Skip to content

Instantly share code, notes, and snippets.

@agscala
Created September 23, 2010 04:10
Show Gist options
  • Save agscala/593080 to your computer and use it in GitHub Desktop.
Save agscala/593080 to your computer and use it in GitHub Desktop.
import pickle
data1 = {'a': [1, 2.0, 3, 4+6j],
'b': ('string', u'Unicode string'),
'c': None}
selfref_list = [1, 2, 3]
selfref_list.append(selfref_list)
output = open('data.pkl', 'wb')
# Pickle dictionary using protocol 0.
pickle.dump(data1, output)
# Pickle the list using the highest protocol available.
pickle.dump(selfref_list, output, -1)
output.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment