【发布时间】:2013-11-07 16:37:29
【问题描述】:
import ast # needed to read text as a dictionary
import operator # needed to find term with maximum value
def define_words():
final_dict={}
with open('/Users/admin/Desktop/Dante Dictionary/experimental_dict.txt','r', encoding = "utf-8") as dic:
dante_dict = ast.literal_eval(dic.read())# reads text as a dictionary
print('the start length was: ', len(dante_dict)) # start length of source dictionary
key_to_find = max(dante_dict.items(), key=operator.itemgetter(1))[0]
print('The next word to define is ', key_to_find) # show which word needs defining
definition = input('Definition ? : ') # prompt for definition
for key in dante_dict.keys():
if key == key_to_find:
final_dict.update({key_to_find:definition})
dante_dict.pop(key_to_find)
print('the end length is : ' ,len(dante_dict))
print(dante_dict) # print source dictionary, modified
print(final_dict) # print dictionary with newly defined entry
with open('/Users/admin/Desktop/Dante Dictionary/experimental_dict.txt', 'w', encoding = 'utf-8') as outfile:
outfile.write(str(dante_dict)) # writes source dictionary minus newly-defined term
with open('/Users/admin/Desktop/Dante Dictionary/trial_dictionary.txt', 'w', encoding = 'utf-8') as finalfile:
finalfile.write(str(final_dict))
我很抱歉为了回应我所获得的帮助而重新发布了一个类似的问题。不知道如何添加修改。我仍然有这个问题。我的最终字典每次都会被覆盖,而不是附加新定义的术语,所以字典只包含最后一个键:值对。我认为通过使用 dict_name[key] = value,新条目将被附加,而其他条目保持不变。帮助表示赞赏
【问题讨论】:
-
使用
pickle将字典或任何对象存储到文件中并执行相反的操作。 -
每次调用函数时都会创建一个 new 字典;您是否希望字典保留先前调用该函数的先前键?
-
是的,我确实预料到了。请问如何解决这个问题
-
@user1478335 你能给我一个文本文件吗,我想完全重现你的问题。
-
Games Brainiac,谢谢。我怎样才能得到一个文本文件给你?只是我的问题中的文本和编辑,或者有什么方法可以附加文本文件?这是一个小版本:{'amico': 1, "'Segnor": 1, 'volgere': 1, 'spaventate,': 1, "s'avvantaggia": 1, 'livore': 1, 'disposta' : 1, 'pennelli': 1, 'atto': 15, 'Berti': 1, 'atti': 7, 'Gaia': 1, 'alzato,': 1, 'reda': 2, "d'ossa ": 1, 'rede': 1, 'compartir': 1, 'calle': 2, 'dogliose': 1, 'consiglia,': 1, 'piacere,': 2, 'saglia': 1, "l 'ampiezza": 2, "d'Acquasparta,": 1,'solvesi': 1, 'Dopo': 3, 'amico,': 1}
标签: python python-3.x dictionary