Created
January 5, 2017 06:05
-
-
Save peroon/455a58c0ea053bbe8aedad8bac8070ee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| c = [1,2,3] | |
| import pickle | |
| f = open("sample.pickle", "w") | |
| pickle.dump(c, f) | |
| f.close() | |
| print "load from pickle" | |
| f = open("sample.pickle", "r") | |
| d = pickle.load(f) | |
| f.close() | |
| print d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment