用eval在txt中存储list,dict,tuple
生活随笔
收集整理的這篇文章主要介紹了
用eval在txt中存储list,dict,tuple
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
代碼如下:
#-*- encoding:utf-8 -*- import sys reload(sys) sys.setdefaultencoding('utf-8')with open("./a.txt","r") as f: lines = f.readlines()#讀取全部內(nèi)容 for line in lines: data=eval(line) print type(data)print data運行結(jié)果:
<type 'list'>
[[1, 2], [3, 4], [5, 6], [7, 8], [9, 0]]
<type 'dict'>
{1: 'a', 2: 'b'}
<type 'tuple'>
([1, 2], [3, 4], [5, 6], [7, 8], (9, 0))
[Finished in 0.0s]
總結(jié)
以上是生活随笔為你收集整理的用eval在txt中存储list,dict,tuple的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python中的协程:greenlet和
- 下一篇: Python中Function(函数)和