My error line:
desk = 'c:\Users\'
I whant my output to be c:\Users\ but I cant end my line with \. How do I make it happen?
My error line:
desk = 'c:\Users\'
I whant my output to be c:\Users\ but I cant end my line with \. How do I make it happen?
You need to escape the backslash
>>> desk = 'c:\\Users\\'
>>> desk
'c:\\Users\\'