Python - 尝试以 \" 结束文件地址会在扫描字符串文字时导致 EOL

Python - Attempting to end file adress with a \", causes EOL while scanning string literal

import os.path
LicencePlate = input("Plate me Bitch")
savePath = "M:\Python\PlatesOffences\"
print(savePath + LicencePlate)
if os.path.exists(savePath + + LicencePlate + ".txt" ) == True:
    print("FileFound")`

我需要的文件地址反斜杠导致代码忽略引号,在扫描字符串文字错误时返回 EOL。我不知道 ide 如何解决这个问题。

\ 是字符串文字中的转义字符。它修改后面的角色的行为。在您的情况下,它修改了 " 的含义,不再代表字符串的结尾。

尝试以下替代方法之一:

savePath = "M:\Python\PlatesOffences\"
savePath = "M:/Python/PlatesOffences/"