View Pit Stop page for race #2 by theomt1 — Ghost race
View profile for tooheeee (theomt1)
Official speed | 59.67 wpm (54.70 seconds elapsed during race) |
---|---|
Race Start | May 26, 2025 6:08:21am UTC |
Race Finish | May 26, 2025 6:09:15am UTC |
Outcome | No win (13 of 25) |
Opponents |
2. drepram (89.11 wpm) 4. mr_jabi (80.04 wpm) |
Accuracy | 97.0% |
Points | 38.78 |
Text | #10017 (Length: 272 characters) import random min = 1 max = 6 roll_again = "yes" while roll_again == "yes" or roll_again == "y": print "Rolling the dices..." print "The values are...." print random.randint(min, max) print random.randint(min, max) roll_again = raw_input("Roll the dices again?") |