Calem (slow_crunch)

Race #3

View Pit Stop page for race #3 by slow_crunchGhost race

View profile for Calem (slow_crunch)

Official speed 38.08 wpm (122.27 seconds elapsed during race)
Race Start July 12, 2023 3:24:49pm UTC
Race Finish July 12, 2023 3:26:51pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 40.62
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