View Pit Stop page for race #233 by maerih — Ghost race
View profile for maerih (maerih)
Official speed | 49.27 wpm (66.25 seconds elapsed during race) |
---|---|
Race Start | June 16, 2025 12:10:08pm UTC |
Race Finish | June 16, 2025 12:11:14pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 32.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?") |