“Python speichert ein Wörterbuch als Objekt” Code-Antworten

So speichern Sie das Diktat im TXT -Format

dict = {'Python' : '.py', 'C++' : '.cpp', 'Java' : '.java'}
f = open("dict.txt","w")
f.write( str(dict) )
f.close()
Vivacious Vole

Python speichert ein Wörterbuch als Objekt

import pickle 
dictionary_data = {"a": 1, "b": 2}

# SAVE
with open("data.pkl", "wb") as pkl_handle:
	pickle.dump(dictionary_data, pkl_handle)

# LOAD
with open("data.pkl", "rb") as pkl_handle:
	output = pickle.load(pkl_handle)
    
print(output)
Exuberant Earthworm

Ähnliche Antworten wie “Python speichert ein Wörterbuch als Objekt”

Fragen ähnlich wie “Python speichert ein Wörterbuch als Objekt”

Weitere verwandte Antworten zu “Python speichert ein Wörterbuch als Objekt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen