This is my code, but the result is not what I want,
def read_message():
quotes = open("C:\Users\Administrator\Desktop\movie_quotes.txt")
read_file = quotes.read()
print(read_file)
quotes.close()
read_message()
The result shows that:
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
And I do not understand the exact meaning. My python version is 3.5.3.