自适应文件编码打开文件
import chardet # 首先二进制方式打开文件 with open(absPath, 'rb') as frb: # 检测编码方式 cur_encoding = chardet.detect(frb.read())['encoding'] # 指定文件编码方式 with open(absPath, 'r', encoding=cur_encoding) as fr: Content = fr.read()
文件操作
''' w write mode r read mode a append mode ''' https://www.runoob.com/python/file-methods.html # 创建文件 open('xxx.txt', 'w').close() # 经测试,不需要+号