I currently have the code:
fleechance = random.randrange(1,5) print fleechance if fleechance == 1 or 2: print \"You failed to run away!\" elif fleechance
Try
if fleechance == 1 or fleechance == 2: print "You failed to run away!" elif fleechance == 4 or fleechance == 3: print "You got away safely!"
Alternatively, if those are the only possibilites, you can do
if fleechance <= 2: print "You failed to run away!" else: print "You got away safely!"