View Pit Stop page for race #54 by papa_bear_clinton — Ghost race
View profile for clinton (papa_bear_clinton)
| Official speed | 37.26 wpm (124.96 seconds elapsed during race) |
|---|---|
| Race Start | December 23, 2024 8:28:51am UTC |
| Race Finish | December 23, 2024 8:30:56am UTC |
| Outcome | No win (3 of 4) |
| Opponents |
1. techy_mohit (39.64 wpm) |
| Accuracy | 97.0% |
| Points | 39.75 |
| 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 |