tanon (tanon710s)

Race #72

View Pit Stop page for race #72 by tanon710sGhost race

View profile for tanon (tanon710s)

Official speed 106.69 wpm (39.82 seconds elapsed during race)
Race Start February 25, 2019 2:54:23pm UTC
Race Finish February 25, 2019 2:55:03pm UTC
Outcome No win (3 of 4)
Opponents 2. permil (113.34 wpm)
Accuracy 99.0%
Points 113.80
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