View Pit Stop page for race #10 by luis_univ — Ghost race
View profile for Luis Alberto Delgado Pinto (luis_univ)
| Official speed | 25.91 wpm (179.70 seconds elapsed during race) |
|---|---|
| Race Start | May 20, 2025 10:26:20pm UTC |
| Race Finish | May 20, 2025 10:29:20pm UTC |
| Outcome | No win (8 of 16) |
| Opponents |
7. noelelias (27.46 wpm) 9. jgary199 (25.27 wpm) |
| Accuracy | 93.0% |
| Points | 27.64 |
| 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 |