Change:
# Read from file
f_myfile = open('myfile.pickle', 'wb')
to:
f_myfile = open('myfile.pickle', 'rb')
and you can see the dict obj you’ve pickled.
Change:
# Read from file
f_myfile = open('myfile.pickle', 'wb')
to:
f_myfile = open('myfile.pickle', 'rb')
and you can see the dict obj you’ve pickled.