View Pit Stop page for race #30 by axeluri — Ghost race
View profile for yo mas epzilon (axeluri)
| Official speed | 71.96 wpm (64.70 seconds elapsed during race) |
|---|---|
| Race Start | November 20, 2025 10:48:24pm UTC |
| Race Finish | November 20, 2025 10:49:28pm UTC |
| Outcome | No win (1 of 1) |
| Accuracy | 94.0% |
| Points | 76.76 |
| 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 |