J Gary (jgary199)

Race #11

View Pit Stop page for race #11 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 25.27 wpm (184.25 seconds elapsed during race)
Race Start May 20, 2025 10:26:20pm UTC
Race Finish May 20, 2025 10:29:24pm UTC
Outcome No win (9 of 16)
Opponents 8. luis_univ (25.91 wpm)
Accuracy 92.0%
Points 26.96
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