(sidd_)

Race #61

View Pit Stop page for race #61 by sidd_Ghost race

View profile for (sidd_)

Official speed 115.36 wpm (36.82 seconds elapsed during race)
Race Start January 27, 2019 11:18:59pm UTC
Race Finish January 27, 2019 11:19:36pm UTC
Outcome Win (1 of 5)
Opponents 2. delirious (104.31 wpm)
3. styrofoam (88.22 wpm)
4. poem (67.41 wpm)
5. hellothen (67.13 wpm)
Accuracy 97.0%
Points 123.05
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