kewl (hyper_racer)

Race #48

View Pit Stop page for race #48 by hyper_racerGhost race

View profile for kewl (hyper_racer)

Official speed 64.73 wpm (65.63 seconds elapsed during race)
Race Start July 20, 2019 8:32:30pm UTC
Race Finish July 20, 2019 8:33:36pm UTC
Outcome No win (5 of 5)
Opponents 1. mako640 (123.64 wpm)
2. keegant (91.16 wpm)
3. storm (80.87 wpm)
4. spondulix (80.60 wpm)
Accuracy 96.0%
Points 69.04
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