各位大大好!
我是刚接触一个月的小新手,我想让txt档案里的的字典拿出来使用
程式如下:
txt档案里面是一个 {'p233':'p321'}
poem = ''
fin = open('relativity','rt')
while True:
line = fin.readline()
if not line:
break
poem += line
print (line)
{'p233':'p321'}
print (line[0])
读取的结果是 {
想要知道我要怎么可以正常使用这个字典!
感谢大家
我希望是能变回
X = {'p233':'p321'}
print (X['p233'])
'p321'