import os
path= os.getcwd()
final= path +'\xulrunner.exe ' + path + '\application.ini'
print final
I want the out put:
c:\python25\xulrunner.exe c:\python25\application.ini
I don't want slash to work as string, i mean don't want it to escape or do anything special. But i get an error
Invalid \x escape
How can i use a '\' as a '\' and not an escape?