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)

原文地址:https://www.cnblogs.com/fmgao-technology/p/9045820.html