SalmanMKC (hellothen)

Race #15

View Pit Stop page for race #15 by hellothenGhost race

View profile for SalmanMKC (hellothen)

Official speed 67.13 wpm (63.28 seconds elapsed during race)
Race Start January 27, 2019 11:18:59pm UTC
Race Finish January 27, 2019 11:20:02pm UTC
Outcome No win (5 of 5)
Opponents 1. sidd_ (115.36 wpm)
2. delirious (104.31 wpm)
3. styrofoam (88.22 wpm)
4. poem (67.41 wpm)
Accuracy 96.0%
Points 71.61
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