Shoemaker-Levy 9 (atthetop)

Race #9

View Pit Stop page for race #9 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 74.09 wpm (57.34 seconds elapsed during race)
Race Start October 31, 2018 4:28:04am UTC
Race Finish October 31, 2018 4:29:01am UTC
Outcome Win (1 of 2)
Opponents 2. styrofoam (70.64 wpm)
Accuracy 94.0%
Points 79.02
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