python-技巧合集

  1. 自动监测文件格式以切换读取文字的格式
    import chardet
    
    # 检测文件编码
    with open('filename.txt', 'rb') as f:
        raw_data = f.read()
        result = chardet.detect(raw_data)
        encoding = result['encoding']
    
    # 使用检测到的编码打开文件
    with open('filename.txt', 'r', encoding=encoding) as f:
        content = f.read()
    

版权声明:
作者:夜阑
链接:http://yelan.xyz/index.php/2024/06/30/python-%e6%8a%80%e5%b7%a7%e5%90%88%e9%9b%86/
来源:夜阑的小站
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>