Skip to content

Instantly share code, notes, and snippets.

@tempox
tempox / Game.py
Created June 25, 2013 02:58
Just run the program either in python or the command line. Then answer the questions. Hopefully the code works this is my first time uploading code to github.
import random
import time
import pickle
## Initial constants
initial_human = 100
human = initial_human
human_dead = 0
initial_beast = 25
beast = initial_beast
beast_dead = 0