View Pit Stop page for race #7 by piemaniac — Ghost race
View profile for Girl (piemaniac)
Official speed | 44.34 wpm (106.63 seconds elapsed during race) |
---|---|
Race Start | April 1, 2022 3:48:17pm UTC |
Race Finish | April 1, 2022 3:50:04pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 92.0% |
Points | 47.30 |
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 |