View Pit Stop page for race #1 by amsakib — Ghost race
View profile for Asir Mosaddek (amsakib)
Official speed | 47.88 wpm (97.24 seconds elapsed during race) |
---|---|
Race Start | March 23, 2025 9:39:59am UTC |
Race Finish | March 23, 2025 9:41:37am UTC |
Outcome | No win (2 of 6) |
Opponents |
1. z_slayer (47.89 wpm) |
Accuracy | 95.0% |
Points | 51.07 |
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 |