(sidd_)

Race #19

View Pit Stop page for race #19 by sidd_Ghost race

View profile for (sidd_)

Official speed 115.92 wpm (36.65 seconds elapsed during race)
Race Start October 3, 2018 5:52:33pm UTC
Race Finish October 3, 2018 5:53:10pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 123.65
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