加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
eval函数的使用.py 480 Bytes
一键复制 编辑 原始数据 按行查看 历史
fengmingshan 提交于 2021-12-15 20:46 . 找回资料提交
# -*- coding: utf-8 -*-
"""
Created on Sat May 8 09:33:49 2021
@author: Administrator
"""
import os
path = 'C:/Users/Administrator/Desktop/'
os.chdir(path)
li1 = [1,2,3,4,5,6]
dict1 = {'a':1, 'b':2, 'c':3}
with open('123.txt','w') as f:
f.write(str(li1))
with open('456.txt','w') as f:
f.write(str(dict1))
with open('123.txt','r') as f:
content = f.read()
li2 = eval(content)
with open('456.txt','r') as f:
content = f.read()
dict3 = eval(content)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化