在python2.7中AttributeError:“模块”对象没有属性“ detect_encoding” 最佳答案 为了与python2&3兼容,您可以使用: from lib2to3.pgen2 import tokenize tokenize.detect_encoding(f.readline)[0] # 'utf-8'