View Pit Stop page for race #1 by apollo_fortune — Ghost race
View profile for APO Fortune (apollo_fortune)
Official speed | 28.25 wpm (164.81 seconds elapsed during race) |
---|---|
Race Start | July 21, 2023 12:39:32pm UTC |
Race Finish | July 21, 2023 12:42:17pm UTC |
Outcome | No win (10 of 17) |
Opponents |
9. zeus_markjoseph (28.65 wpm) 11. apollo_gildebrando (27.98 wpm) |
Accuracy | 97.0% |
Points | 30.13 |
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 |