t11h (t111h)

Race #2

View Pit Stop page for race #2 by t111hGhost race

View profile for t11h (t111h)

Official speed 29.99 wpm (155.25 seconds elapsed during race)
Race Start February 9, 2022 12:34:43pm UTC
Race Finish February 9, 2022 12:37:18pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 31.99
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