Здравствуйте!
У меня выдаёт такую ошибку:
C:\Users\user\AppData\Local\Programs\Python\Python310\python.exe “DAll_projects/Python projects/Задания/Тест.py”
Input is being redirected from C:\Program Files\JetBrains\PyCharm Community Edition 2022.1.2\bin\pycharm64.exe
Traceback (most recent call last):
File “D:\All_projects\Python projects\Задания\Тест.py”, line 1, in <module>
n1 = input()
File “C:\Users\user\AppData\Local\Programs\Python\Python310\lib\codecs.py”, line 322, in decode
(result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: ‘utf-8’ codec can't decode byte 0x90 in position 2: invalid start byte
Process finished with exit code 1
Уже всё, что мог перепробовал. Проверил и поменял, где нужно было кодировку. Всё равно ошибка вылазит. Возможно ошибка в коде в *\lib\codecs.py
def decode(self, input, final=False):
# decode input (taking the buffer into account)
data = self.buffer + input
(result, consumed) = self._buffer_decode(data, self.errors, final)
# keep undecoded input until the next call
self.buffer = data
return result
Помогите, пж, исправить.