View Pit Stop page for race #41 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 71.44 wpm (59.46 seconds elapsed during race) |
---|---|
Race Start | July 20, 2019 8:40:06pm UTC |
Race Finish | July 20, 2019 8:41:05pm UTC |
Outcome | No win (4 of 4) |
Opponents |
1. mako640 (132.15 wpm) 2. keegant (98.62 wpm) 3. storm (75.11 wpm) |
Accuracy | 96.0% |
Points | 76.20 |
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 |