Integers in pickle file | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

Integers in pickle file

How to save integers into pickle file

7th Aug 2019, 10:18 AM
mysterious_coder
mysterious_coder - avatar
2 Respuestas
+ 2
That's the beauty of pickle - it doesn't matter what you save, the procedure is the same! import pickle x = 5 with open('file.dmp', 'wb') as tmp: pickle.dump(x, tmp) https://www.pythoncentral.io/how-to-pickle-unpickle-tutorial/
7th Aug 2019, 11:44 AM
HonFu
HonFu - avatar
+ 1
thank you
13th Aug 2019, 2:37 PM
mysterious_coder
mysterious_coder - avatar