View Pit Stop page for race #1 by aphrodite_naomi — Ghost race
View profile for APHR Naomi (aphrodite_naomi)
Official speed | 62.65 wpm (74.32 seconds elapsed during race) |
---|---|
Race Start | July 21, 2023 12:39:40pm UTC |
Race Finish | July 21, 2023 12:40:54pm UTC |
Outcome | Win (1 of 17) |
Opponents |
2. hestia_luigi (54.86 wpm) |
Accuracy | 97.0% |
Points | 66.82 |
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 |