View Pit Stop page for race #91 by samiraarancibia123426 — Ghost race
View profile for samiraarancibia (samiraarancibia123426)
Official speed | 25.42 wpm (183.16 seconds elapsed during race) |
---|---|
Race Start | June 16, 2025 12:23:09pm UTC |
Race Finish | June 16, 2025 12:26:12pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 91.0% |
Points | 27.12 |
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 |