chocolate (stratonov16)

Race #1

View Pit Stop page for race #1 by stratonov16Ghost race

View profile for chocolate (stratonov16)

Official speed 36.16 wpm (128.76 seconds elapsed during race)
Race Start January 3, 2022 7:47:44pm UTC
Race Finish January 3, 2022 7:49:53pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 38.57
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