Hello everyone, I'm new to Python programming, I'm creating a program that reads information from a text and transcribes elsewhere.
Apparently the text was working normally on the computer, I uploaded all this information in github
, when I generated this file on a new computer the following error occurred:
'utf-8' codec can not decode byte 0xea in position 1: invalid continuation byte.
I tried to add a few new parameters:
file = open(r'Query.txt','r',encoding='utf-8')
Yet unsuccessful.
Can anyone help me?