SalmanMKC (hellothen)

Race #137

View Pit Stop page for race #137 by hellothenGhost race

View profile for SalmanMKC (hellothen)

Official speed 79.99 wpm (53.11 seconds elapsed during race)
Race Start April 23, 2019 5:04:29pm UTC
Race Finish April 23, 2019 5:05:22pm UTC
Outcome No win (2 of 2)
Accuracy 97.0%
Points 85.32
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