View Pit Stop page for race #1 by hestia_joshuajohn — Ghost race
View profile for HEST Joshua John (hestia_joshuajohn)
Official speed | 49.22 wpm (94.60 seconds elapsed during race) |
---|---|
Race Start | July 21, 2023 12:39:38pm UTC |
Race Finish | July 21, 2023 12:41:12pm UTC |
Outcome | No win (4 of 17) |
Opponents |
2. hestia_luigi (54.86 wpm) 3. ares_reyandre (52.73 wpm) |
Accuracy | 97.0% |
Points | 52.51 |
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 |