Don*_*Kim 2 python dictionary tuples save
我想保存在键上有元组的字典。
我试过pickle、ujson、json来保存字典。他们都没有工作。
字典有:
dictionary = {(-30, -29, -72, -71): [[-29.99867621124457, -71.75349423197208, 220], [-29.996964568219873, -71.7521560207641, 220], [-29.99696437241995, -71.7507330056961, 220], [-29.99761665426199, -71.75016101067708, 220]]}
Run Code Online (Sandbox Code Playgroud)
我试过:
with open('depth_echo.txt', 'w') as file:
file.write(ujson.dumps(dictionary)
import json
a, b, c = "abc"
data = {(1,2,3):(a,b,c), (2,6,3):(6,3,2)}
on_disk = json.dumps(data.items())
Run Code Online (Sandbox Code Playgroud)
将字典写为字符串
with open(r'test.txt','w+') as f:
f.write(str(dictionary))
Run Code Online (Sandbox Code Playgroud)
阅读使用 eval
dic = ''
with open(r'test.txt','r') as f:
for i in f.readlines():
dic=i #string
dic = eval(dic) # this is orignal dict with instace dict
Run Code Online (Sandbox Code Playgroud)