(sidd_)

Race #27

View Pit Stop page for race #27 by sidd_Ghost race

View profile for (sidd_)

Official speed 112.81 wpm (37.66 seconds elapsed during race)
Race Start January 2, 2019 1:24:41am UTC
Race Finish January 2, 2019 1:25:19am UTC
Outcome Win (1 of 2)
Opponents 2. camtypez (29.44 wpm)
Accuracy 99.0%
Points 120.33
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