Evans (lordvidex)

Race #16

View Pit Stop page for race #16 by lordvidexGhost race

View profile for Evans (lordvidex)

Official speed 45.46 wpm (102.42 seconds elapsed during race)
Race Start January 26, 2023 8:54:13pm UTC
Race Finish January 26, 2023 8:55:55pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 48.49
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