import random print 'Hunt the Wumpus Ver 0.1' print "You are in a cave with twenty rooms. Each room has three tunnels that lead to other rooms. The wumpus lives in the cave in one of the rooms. Bats can be found, as well as pits. You will be warned of the wumpus, a pit, or a bat. You have 5 arrows. You can shoot them using the 's' key. Win by shooting the wumpus." wumpus = random.randint(1,20) bat1 = random.randint(1,20) bat2 = random.randint(1,20) pit1 = random.randint(1,20) pit2 = random.randint(1,20)