🤺 (turboflames)

Race #206

View Pit Stop page for race #206 by turboflamesGhost race

View profile for 🤺 (turboflames)

Official speed 83.88 wpm (56.37 seconds elapsed during race)
Race Start July 8, 2021 5:32:07am UTC
Race Finish July 8, 2021 5:33:03am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 89.47
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