(delirious)

Race #63

View Pit Stop page for race #63 by deliriousGhost race

View profile for (delirious)

Official speed 97.53 wpm (43.56 seconds elapsed during race)
Race Start February 16, 2019 5:55:52am UTC
Race Finish February 16, 2019 5:56:36am UTC
Outcome No win (4 of 4)
Opponents 1. sidd_ (119.47 wpm)
2. deroche1 (114.36 wpm)
3. arc_sec (100.46 wpm)
Accuracy 98.0%
Points 104.03
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