Alex (132ads)

Race #2

View Pit Stop page for race #2 by 132adsGhost race

View profile for Alex (132ads)

Official speed 65.88 wpm (70.67 seconds elapsed during race)
Race Start April 11, 2020 9:09:42am UTC
Race Finish April 11, 2020 9:10:53am UTC
Outcome No win (2 of 2)
Opponents 1. pikapii (72.26 wpm)
Accuracy 95.0%
Points 70.27
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