View Pit Stop page for race #65 by paraphrohn — Ghost race
View profile for paraph (paraphrohn)
| Official speed | 84.55 wpm (50.24 seconds elapsed during race) |
|---|---|
| Race Start | February 25, 2019 2:48:53pm UTC |
| Race Finish | February 25, 2019 2:49:43pm UTC |
| Outcome | No win (3 of 3) |
| Opponents |
1. permil (111.84 wpm) |
| Accuracy | 95.0% |
| Points | 90.19 |
| Text | #10018 (Length: 388 characters) import random n = random.randint(1, 99) guess = int(raw_input("Enter an integer from 1 to 99: ")) while n != "guess": print if guess < n: print "guess is low" guess = int(raw_input("Enter an integer from 1 to 99: ")) elif guess > n: print "guess is high" guess = int(raw_input("Enter an integer from 1 to 99: ")) else: print "you guessed it!" break print |