Lỗi đọc file Python: SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
Trong Python, bạn đọc file nhưng trình biên dịch thông báo lỗi
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
Cách sửa:
Bạn chú ý thiết lập đường dẫn thay bằng 2 dấu gạch \\ là OK.
qbfile = open("C:\\Users\\Administrator\\Desktop\\texttest.txt","r")
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
Cách sửa:
Bạn chú ý thiết lập đường dẫn thay bằng 2 dấu gạch \\ là OK.
qbfile = open("C:\\Users\\Administrator\\Desktop\\texttest.txt","r")