UnicodeDecodeError: 'ascii' codec can't decode byte 0xef in position 1: ordinal not in range(128)

UnicodeDecodeError: 'ascii' codec can't decode byte 0xef in position 1: ordinal not in range(128)

我正在使用 python = 3.6 无法为此找到解决方案? 谁能帮我解决这个问题!

您可以使用 b'\xef or some string here'.decode("utf-8", "ignore") 简单地忽略此类错误。另一种方法是使用 try-catch 块。

无论哪种方式,您都可能需要检查 Python Docs on Unicode