View Pit Stop page for race #5 by fabioladiaz — Ghost race
View profile for Fabiola Diaz Puma (fabioladiaz)
Official speed | 24.85 wpm (187.36 seconds elapsed during race) |
---|---|
Race Start | September 23, 2024 12:49:50am UTC |
Race Finish | September 23, 2024 12:52:57am UTC |
Outcome | No win (4 of 12) |
Opponents |
3. kazaam37 (26.25 wpm) 5. ronnymorunoerquicia (23.52 wpm) |
Accuracy | 96.0% |
Points | 26.51 |
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 |