(timjeffery44)

Race #17

View Pit Stop page for race #17 by timjeffery44Ghost race

View profile for (timjeffery44)

Official speed 54.15 wpm (78.45 seconds elapsed during race)
Race Start May 5, 2019 11:30:04am UTC
Race Finish May 5, 2019 11:31:23am UTC
Outcome No win (1 of 1)
Accuracy 93.0%
Points 57.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