Created
August 14, 2017 01:39
-
-
Save taddeimania/7e5ebe70c756d4f63795e7c2df9bb8fc to your computer and use it in GitHub Desktop.
I'M PYTHON PICKLE RICK!!!!
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
import pickle | |
class Rick: | |
def __str__(self): | |
return "i'm pickle rick!!!!" | |
pickle_rick = pickle.dumps(Rick()) | |
regular_rick = pickle.loads(pickle_rick) | |
print(regular_rick) | |
# >>> i'm pickle rick!!!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just did the same thing one year after :))