View Pit Stop page for race #6 by uchihalol — Ghost race
View profile for Calculus (uchihalol)
| Official speed | 64.57 wpm (65.79 seconds elapsed during race) |
|---|---|
| Race Start | November 1, 2018 6:24:48pm UTC |
| Race Finish | November 1, 2018 6:25:54pm UTC |
| Outcome | No win (3 of 4) |
| Opponents |
1. styrofoam (85.01 wpm) 2. atthetop (77.24 wpm) 4. hyper_racer (54.45 wpm) |
| Accuracy | 92.0% |
| Points | 68.88 |
| 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 |