View Pit Stop page for race #37 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 80.60 wpm (52.70 seconds elapsed during race) |
---|---|
Race Start | July 20, 2019 8:32:30pm UTC |
Race Finish | July 20, 2019 8:33:23pm UTC |
Outcome | No win (4 of 5) |
Opponents |
1. mako640 (123.64 wpm) 2. keegant (91.16 wpm) 3. storm (80.87 wpm) 5. hyper_racer (64.73 wpm) |
Accuracy | 97.0% |
Points | 85.97 |
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 |