View Pit Stop page for race #2 by jjz03 — Ghost race
Official speed | 81.34 wpm (52.23 seconds elapsed during race) |
---|---|
Race Start | October 12, 2018 11:55:36am UTC |
Race Finish | October 12, 2018 11:56:28am UTC |
Outcome | Win (1 of 3) |
Accuracy | 99.0% |
Points | 86.76 |
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 |