thomas (thoarell)

Race #4

View Pit Stop page for race #4 by thoarellGhost race

View profile for thomas (thoarell)

Official speed 65.54 wpm (71.04 seconds elapsed during race)
Race Start August 5, 2022 12:00:07am UTC
Race Finish August 5, 2022 12:01:18am UTC
Outcome No win (3 of 5)
Accuracy 96.0%
Points 69.91
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