While, input ve dictionary hakkında bir soru

Veritabaniyla ugrasmaya hic gerek yok:

import pickle

kaydedilecek_veri = [
	{ 'hede': "hodo", 'budu': 42 },
	{ 'hede': "hidi", 'budu': 4.2 }
]

with open('/tmp/hede', 'wb') as f:
	pickle.dump(kaydedilecek_veri, f)

with open('/tmp/hede', 'rb') as f:
	kayitli_veri = pickle.load(f)

print(kayitli_veri)
5 Beğeni