View Pit Stop page for race #1 by typing_ninja_028 — Ghost race
View profile for Typing Ninja (typing_ninja_028)
| Official speed | 26.18 wpm (177.85 seconds elapsed during race) |
|---|---|
| Race Start | March 1, 2024 10:44:03am UTC |
| Race Finish | March 1, 2024 10:47:01am UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 91.0% |
| Points | 27.92 |
| 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 |