Can all paths in a Python program use \"..\" (for the parent directory) and / (for separating path components), and still work whatever the platform?
On one
As others have said, a forward slash will work in all cases, but you're better off creating a list of path segments and os.path.join()-ing them.