Created
June 27, 2014 06:26
-
-
Save Torxed/ba0fd5b0dc1eae82cea6 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
import pickle | |
gameVars = {'health' : 100, 'stamina' : 100} # 100% on both | |
print('Current health is:', gameVars['health']) | |
gameVars['health'] -= 25 | |
pickle.dump(gameVars, open('game.dump', 'wb')) | |
del(gameVars) | |
try: | |
print('Current health is:', gameVars['health']) | |
except: | |
print('Could not print, game variables are deleted...') | |
gameVars = pickle.load(open('game.dump', 'rb')) | |
print('Current health is:', gameVars['health']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment