字節這是我的代碼,但結果不是我想要的,編解碼器不能解碼在Python
def read_message():
quotes = open("C:\Users\Administrator\Desktop\movie_quotes.txt")
read_file = quotes.read()
print(read_file)
quotes.close()
read_message()
結果表明:
File "E:/Python/p1/send_message.py", line 4
quotes = open("C:\Users\Administrator\Desktop\movie_quotes.txt")
^
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
而且我不明白確切的意思。 我的python版本是3.5.3。
這不會導致「unicode錯誤」。 –
它肯定會。 –