View Pit Stop page for race #4 by camtypez — Ghost race
View profile for Cameron (camtypez)
| Official speed | 32.09 wpm (132.38 seconds elapsed during race) |
|---|---|
| Race Start | January 2, 2019 1:35:35am UTC |
| Race Finish | January 2, 2019 1:37:48am UTC |
| Outcome | No win (2 of 2) |
| Opponents |
1. sidd_ (112.33 wpm) |
| Accuracy | 96.0% |
| Points | 34.23 |
| 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 |