python读取文件中的字典

import ast


def file_read():
    with open('D:\\pytharm\\jichuyufa\\day2\\pro_cty_con.txt', 'r', encoding='utf8') as f:
        san_dic = ast.literal_eval(f.read())
        return san_dic


dic = file_read()
print(dic)

猜你喜欢

转载自www.cnblogs.com/fmgao-technology/p/9045820.html