Shoemaker-Levy 9 (atthetop)

Race #71

View Pit Stop page for race #71 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 77.24 wpm (55.00 seconds elapsed during race)
Race Start November 1, 2018 6:24:48pm UTC
Race Finish November 1, 2018 6:25:43pm UTC
Outcome No win (2 of 4)
Opponents 1. styrofoam (85.01 wpm)
3. uchihalol (64.57 wpm)
4. hyper_racer (54.45 wpm)
Accuracy 95.0%
Points 82.39
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