View Pit Stop page for race #2 by robert1003 — Ghost race
View profile for robert1003 (robert1003)
Official speed | 35.36 wpm (131.67 seconds elapsed during race) |
---|---|
Race Start | May 5, 2025 4:25:43am UTC |
Race Finish | May 5, 2025 4:27:55am UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 37.71 |
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 |