View Pit Stop page for race #283 by aadithebeast — Ghost race
View profile for aadithebest (aadithebeast)
Official speed | 53.89 wpm (60.57 seconds elapsed during race) |
---|---|
Race Start | October 8, 2025 3:44:17pm UTC |
Race Finish | October 8, 2025 3:45:17pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. gafan_dr34ml3nd (53.04 wpm) |
Accuracy | 95.0% |
Points | 35.03 |
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?") |