我将文本文件存储到 python 字典中,对文本文件进行更改。
我面临的问题是将字典内容更新为文本文件。
读取文本文件的代码:
with open ('wvtc_data.txt','r')as x:
for line in x:
line = line.rstrip ('\n')
items = line.split (':')
key,value = items[0], items[1:]
main_dic[key] = value
choice=0
while choice != QUIT:
choice = get_menu_choice()
if choice==DISPLAY:
display(main_dic)
elif choice==CHANGE:
change(main_dic)
elif choice== REMOVE:
remove (main_dic)
elif choice==WRITE:
write(main_dic)
我需要 write 函数(最后一个)来更新文本文件与对字典所做的更改请帮助!