EOL语法保存字符串时出错

时间:2016-09-04 18:22:12

标签: python string

我的错误行:

desk = 'c:\Users\'

我的输出结果为c:\Users\,但我无法用\结束我的输出。我该如何实现?

1 个答案:

答案 0 :(得分:1)

你需要逃避反斜杠

>>> desk = 'c:\\Users\\'
>>> desk
'c:\\Users\\'