Thomas (wh33ler)

Race #7

View Pit Stop page for race #7 by wh33lerGhost race

View profile for Thomas (wh33ler)

Official speed 46.79 wpm (99.51 seconds elapsed during race)
Race Start April 7, 2023 1:41:01pm UTC
Race Finish April 7, 2023 1:42:40pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 49.91
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