HEST Luigi (hestia_luigi)

Race #1

View Pit Stop page for race #1 by hestia_luigiGhost race

View profile for HEST Luigi (hestia_luigi)

Official speed 54.86 wpm (84.87 seconds elapsed during race)
Race Start July 21, 2023 12:39:39pm UTC
Race Finish July 21, 2023 12:41:04pm UTC
Outcome No win (2 of 17)
Opponents 1. aphrodite_naomi (62.65 wpm)
3. ares_reyandre (52.73 wpm)
4. hestia_joshuajohn (49.22 wpm)
Accuracy 94.0%
Points 58.52
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