विंडोज पर '\' और यूनिक्स (मैक ओएस एक्स सहित) '/' के साथ काम करेगा।
यहां पॉसिक्सपैथ के लिए सीधा कोड है
In [22]: os.path.join??
Type: function
String Form:<function join at 0x107c28ed8>
File: /usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py
Definition: os.path.join(a, *p)
Source:
def join(a, *p):
"""Join two or more pathname components, inserting '/' as needed.
If any component is an absolute path, all previous path components
will be discarded."""
path = a
for b in p:
if b.startswith('/'):
path = b
elif path == '' or path.endswith('/'):
path += b
else:
path += '/' + b
return path
खिड़कियां नहीं हैं, लेकिन '\' के साथ भी ऐसा ही होना चाहिए