(delirious)

Race #68

View Pit Stop page for race #68 by deliriousGhost race

View profile for (delirious)

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