paraph (paraphrohn)

Race #56

View Pit Stop page for race #56 by paraphrohnGhost race

View profile for paraph (paraphrohn)

Official speed 83.65 wpm (50.78 seconds elapsed during race)
Race Start February 25, 2019 2:41:23pm UTC
Race Finish February 25, 2019 2:42:14pm UTC
Outcome No win (3 of 3)
Opponents 1. permil (99.78 wpm)
2. nmyo (86.22 wpm)
Accuracy 96.0%
Points 89.22
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