daniel3131 (daniel3131)

Race #33

View Pit Stop page for race #33 by daniel3131Ghost race

View profile for daniel3131 (daniel3131)

Official speed 83.31 wpm (50.99 seconds elapsed during race)
Race Start October 18, 2019 5:49:24am UTC
Race Finish October 18, 2019 5:50:15am UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 88.86
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