I am trying to get a normalized path on windows. The paths are stored in a list and i am looping over those as follows:
>>> lst = ['C:\\', 'C:\\Windows', 'C:\\Program Files']
>>> lst
['C:\\', 'C:\\Windows', 'C:\\Program Files']
>>> for pth in lst:
... print pth
...
C:\
C:\Windows
C:\Program Files
Notice that it has removed one backslash from the output C:\ should be C:\.
The output doesn't change even when I normalize the path in the loop as below:
>>> import os
>>> for pth in lst:
... print os.path.normpath(pth)
...
C:\
C:\Windows
C:\Program Files
Can anyone suggest a fix? Thanks
Update
seems like the suggestions about the raw string is a better way to handle this. But how to specify the string as a raw string within a for loop. Example:
for pth in lst:
raw_str = rpth
Obviously the above doesn't work . How do I achieve this? r'path/to/file' ?