Taush (tsampley)

Race #30

View Pit Stop page for race #30 by tsampleyGhost race

View profile for Taush (tsampley)

Official speed 68.42 wpm (68.05 seconds elapsed during race)
Race Start July 5, 2021 1:18:35pm UTC
Race Finish July 5, 2021 1:19:43pm UTC
Outcome No win (2 of 2)
Opponents 1. rollno14 (69.03 wpm)
Accuracy 98.0%
Points 72.98
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