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