ZEUS Mark Joseph (zeus_markjoseph)

Race #1

View Pit Stop page for race #1 by zeus_markjosephGhost race

View profile for ZEUS Mark Joseph (zeus_markjoseph)

Official speed 28.65 wpm (162.51 seconds elapsed during race)
Race Start July 21, 2023 12:39:32pm UTC
Race Finish July 21, 2023 12:42:14pm UTC
Outcome No win (9 of 17)
Opponents 10. apollo_fortune (28.25 wpm)
11. apollo_gildebrando (27.98 wpm)
Accuracy 94.0%
Points 30.56
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