python编码问题:UnicodeDecodeError: 'gbk' codec can't decode

时间:2020-07-26 16:00:12   收藏:0   阅读:88

在获取yaml文件数据时,提示:UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x80 in position 2: illegal multibyte sequence

import yaml
def test_yaml():
    with open(‘../test_python/yaml_data.yaml‘) as f:
        print(yaml.safe_load(f))

技术图片

import yaml
def test_yaml():
    # 声明编码:encoding=‘utf-8‘
    with open(‘../test_python/yaml_data.yaml‘,encoding=‘utf-8‘) as f:
        print("使用:encoding=‘utf-8‘")
        print(yaml.safe_load(f))

    # 以二进制格式打开一个文件用于只读  
    with open(‘../test_python/yaml_data.yaml‘,‘rb‘) as f:
        print("使用:‘rb‘")
        print(yaml.load(f))

技术图片

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!