douglas (dougalves)

Race #1

View Pit Stop page for race #1 by dougalvesGhost race

View profile for douglas (dougalves)

Official speed 45.13 wpm (103.17 seconds elapsed during race)
Race Start October 27, 2022 1:45:19pm UTC
Race Finish October 27, 2022 1:47:02pm UTC
Outcome No win (2 of 2)
Opponents 1. sodammel (46.90 wpm)
Accuracy 97.0%
Points 48.14
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