kewl (hyper_racer)

Race #44

View Pit Stop page for race #44 by hyper_racerGhost race

View profile for kewl (hyper_racer)

Official speed 66.89 wpm (63.51 seconds elapsed during race)
Race Start July 20, 2019 8:23:30pm UTC
Race Finish July 20, 2019 8:24:33pm UTC
Outcome No win (4 of 4)
Opponents 1. sidd_ (128.92 wpm)
2. keegant (102.65 wpm)
3. storm (71.31 wpm)
Accuracy 95.0%
Points 71.35
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