(sidd_)

Race #150

View Pit Stop page for race #150 by sidd_Ghost race

View profile for (sidd_)

Official speed 114.29 wpm (37.17 seconds elapsed during race)
Race Start February 16, 2019 6:01:55am UTC
Race Finish February 16, 2019 6:02:32am UTC
Outcome No win (2 of 3)
Opponents 1. deroche1 (117.79 wpm)
3. delirious (108.92 wpm)
Accuracy 98.0%
Points 121.91
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