Sp3cTer (sp3ct3r_)

Race #3

View Pit Stop page for race #3 by sp3ct3r_Ghost race

View profile for Sp3cTer (sp3ct3r_)

Official speed 33.39 wpm (139.44 seconds elapsed during race)
Race Start April 22, 2024 5:51:43am UTC
Race Finish April 22, 2024 5:54:02am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 35.61
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