“speichern Sie die Sache in Python Python” Code-Antworten

speichern Sie die Sache in Python Python

import pickle

a = {'hello': 'world'}

with open('filename.pickle', 'wb') as handle:
    pickle.dump(a, handle, protocol=pickle.HIGHEST_PROTOCOL)

with open('filename.pickle', 'rb') as handle:
    b = pickle.load(handle)

print a == b
TheProgrammer

Erstellen Sie Python Python

import pickle
file_name='my_file.pkl'
f = open(file_name,'wb')
pickle.dump(my_data,f)
f.close()
Tremendous Enceladus

pickle.load python

import pickle
# load : get the data from file
data = pickle.load(open(file_path, "rb"))
# loads : get the data from var
data = pickle.load(var)
Doubtful Dingo

Speichern Sie eine Datei als Gurke

with open('mypickle.pickle', 'wb') as f:
    pickle.dump(some_obj, f)

# note that this will overwrite any existing file
# in the current working directory called 'mypickle.pickle'
Depressed Dogfish

Ähnliche Antworten wie “speichern Sie die Sache in Python Python”

Fragen ähnlich wie “speichern Sie die Sache in Python Python”

Weitere verwandte Antworten zu “speichern Sie die Sache in Python Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen