“salvar coisas em pythle python” Respostas de código

salvar coisas em pythle 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

Crie Python Python

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

Pyle.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

Salve um arquivo como um picles

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

Respostas semelhantes a “salvar coisas em pythle python”

Perguntas semelhantes a “salvar coisas em pythle python”

Mais respostas relacionadas para “salvar coisas em pythle python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código