Vielle (arc_sec)

Race #11

View Pit Stop page for race #11 by arc_secGhost race

View profile for Vielle (arc_sec)

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