I ran some code in Python and received the following error, using f = open(file) and f.read() commands:
File "/usr/lib/python3.4/codecs.py", line 313, in decode (result, consumed) = self._buffer_decode(data, self.errors, final) UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe1 in position 62475: invalid continuation byte Firstly, how do I find position 62475 in the source file to see what the characters are? I tried opening the file in pluma and in notepadqq, and both display the line and column numbers, but there doesn't seem to be a way to search by position number.
Once I find the problem area, is there a quick guide to what the character types are and how I can solve the problem?
62475is also the index so get the62475thcharacter