punit (thakelatyper)

Race #44

View Pit Stop page for race #44 by thakelatyperGhost race

View profile for punit (thakelatyper)

Official speed 42.49 wpm (109.58 seconds elapsed during race)
Race Start July 26, 2022 9:37:20am UTC
Race Finish July 26, 2022 9:39:09am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 45.33
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