0
我有字典中的數據。如何將所有密鑰寫入文件(.txt)格式?如何將字典鍵寫入python中的新文本文件?
我有字典中的數據。如何將所有密鑰寫入文件(.txt)格式?如何將字典鍵寫入python中的新文本文件?
您可以使用dict.keys()
從字典中提取鍵:
d = {'foo' : 1, 'bar' : 2}
fname = 'keys.txt'
with open(fname, 'w') as f:
f.write('\n'.join(d.keys()))
f.write('\n') # newline at the end of file
print "Keys saved to {}.".format(fname)
ab={'engy':'011199887765',
'wafa2':'87878857578',
'heba':'6677553636'}
with open('D:\glo.txt','w') as f:
for name, mobile in ab.items():
print ('Contact %s at %s' % (name, mobile))
f.write(name)
這只是一個例子,你需要做一些修改。
你嘗試過什麼?你正在使用哪個版本的Python(2或3)?也許你可以給我們一個樣本字典,然後顯示你期望的文件表示看起來像什麼? –