im liquid smooth (chakk)

Race #1

View Pit Stop page for race #1 by chakkGhost race

View profile for im liquid smooth (chakk)

Official speed 118.20 wpm (35.94 seconds elapsed during race)
Race Start October 31, 2018 7:58:33pm UTC
Race Finish October 31, 2018 7:59:09pm UTC
Outcome No win (1 of 1)
Accuracy 97.0%
Points 126.08
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