View Pit Stop page for race #158 by styrofoam — Ghost race
View profile for police (styrofoam)
Official speed | 88.22 wpm (48.15 seconds elapsed during race) |
---|---|
Race Start | January 27, 2019 11:18:59pm UTC |
Race Finish | January 27, 2019 11:19:47pm UTC |
Outcome | No win (3 of 5) |
Opponents |
1. sidd_ (115.36 wpm) 2. delirious (104.31 wpm) 4. poem (67.41 wpm) 5. hellothen (67.13 wpm) |
Accuracy | 97.0% |
Points | 94.10 |
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 |