Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import pickle
  2.  
  3. datos = ['Python 2', 'Python 3', '...', 'Python 5']
  4.  
  5. with open('datos.ser', 'wb') as f:
  6.     pickle.dump(datos, f)