我无法理解我的代码中发生了什么。它无法打开文件夹。
AddItem.php
答案 0 :(得分:1)
您的文件路径包含在Python(Unicode)中具有特殊含义的字符\U
。您可能收到类似于以下错误:
File "C:/Python34/Testing.py",
quotes = open ("C:\Users\HP\Downloads\book\just.txt")
^
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
当发生这种情况时,您需要使用双反斜杠:
def read_text():
quotes = open("C:\\Users\HP\Downloads\book\just.txt")