View Pit Stop page for race #11 by sdr4wkc48 — Ghost race
View profile for sdr4wkc48 (sdr4wkc48)
Official speed | 45.80 wpm (101.66 seconds elapsed during race) |
---|---|
Race Start | January 18, 2023 4:36:39pm UTC |
Race Finish | January 18, 2023 4:38:20pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 48.85 |
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 |