私はPythonでプログラムを作成しています。通常はデータベースに記録する情報をログに記録する必要がありますが、今は実装できません。dict マトリックスを含む python ファイルにデータを書き込むにはどうすればよいですか。
たとえば、main.py に
name = raw_input("Please enter your name")
age = raw_input("Please enter your age")
hair_colour = raw_input("Pleas enter your hair colour")
そのすべてのデータを log.py ファイルに書き込みたいので、
logs = {
...
...
'the name': {'age':'the age', 'hair colour':'the hair colour'}
}