各位大大好!
我是剛接觸一個月的小新手,我想讓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'