file_name=raw_input("Where would you like to save the file?(the file name will be dits)")
output=open(file_name+"dits.txt","w")#saves the path
k=person.keys()
output.write(k)
v=person.values(k)
i=0
for xrange in 3:# prints the values into a readable file
output.write(v)
output.write(" ")
i=i+1
output.close()
辞書をファイルに保存しようとしていますが、辞書には1つのキーと3つの値があります
person[name]=(bd,email,homepage)
これが私が辞書を保存した方法です 私のコードの問題は何ですか? 約 1 時間かけて修正を試みました。ありがとうございます。