0
私はPythonには新しく、python_diction
(より大きいファイルにある)という辞書の内容を取り出し、そのデータをpython_diction_saved.json
という新しい新しいファイルに保存しようとしています。私は現在私が受け取っているエラーをかなり閉じ込めているように感じます。python_diction_saved.json
は定義されていません。辞書にファイルを保存する
ご協力いただければ幸いです。
import json
f = open("python_diction.txt","w")
python_diction = {}
python_diction["items"] = []
python_diction["items"].append({"hello":1,"hi":2})
python_diction["items"].append({"hello":42,"hi":65})
python_diction["numbers"] = [1,2,3,5,7,8]
f.write(json.dumps(python_diction_saved.json))
f.close()
'python_diction_saved' =>' python_diction' –
グレート、最初のトレースバックエラーを解決しましたが、もう1つのトレースバックエラーが発生しました...... f.write(json.dumps(python_diction_saved.json)) AttributeError: 'dict'オブジェクトに 'json'属性がありません – AvSmith
: 'python_diction_saved.json' =>' python_diction' –