我是新來的Python,我知道這段代碼非常簡單,缺少一些語句,實際上我需要從字典中寫入文件。此代碼可以運行,但只能將字典中的最後一項寫入文件"heba6677..."
。謝謝你的幫助。python寫入文件從字典
ab={'engy':'011199887765',
'wafa2':'87878857578',
'heba':'6677553636'}
for name, mobile in ab.items():
print ('Contact %s at %s' % (name, mobile))
f=open('D:\glo.txt','w')
f.write(name)
f.write(mobile)
f.close()
它的工作原理thaaaaaaaaanx –