我刚开始学习python3 2或3天前所以我是一个总菜鸟。我正在学习一本名为“如何像计算机科学家一样思考”的书,它使用的是python2 ann而不是python3 ...当它告诉我反斜杠字符时我被卡住了......我在互联网上找不到任何东西.. ..
print("This is a test /n This is a test")
这本书说的是我应该得到这样的东西:
This is a test
This is a test
但我得到的是:
This is a test /n This is a test
我做错了吗?
答案 0 :(得分:4)
反斜杠是其他斜杠,\
:
>>> print('This is a test \n This is a test')
This is a test
This is a test
您正在使用转发斜杠,/
。
另请参阅backslash tag wiki excerpt:
反斜杠字符
\
(不要与斜杠/
混淆)...
答案 1 :(得分:2)
您正在使用正斜杠/
而不是反斜杠\
print("This is a test \n This is a test")
This is a test
This is a test