Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 22, 2018 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/a1679a3e848d3cf994ad0ed0d07c61bd to your computer and use it in GitHub Desktop.
Save Fhernd/a1679a3e848d3cf994ad0ed0d07c61bd to your computer and use it in GitHub Desktop.
Serialización de datos en Python con el módulo pickle. OrtizOL.
import pickle
datos = ['Python 2', 'Python 3', '...', 'Python 5']
with open('datos.ser', 'wb') as f:
pickle.dump(datos, f)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment