View Pit Stop page for race #1 by cube_123 — Ghost race
View profile for Cube_123 (cube_123)
Official speed | 18.77 wpm (173.89 seconds elapsed during race) |
---|---|
Race Start | May 25, 2025 12:24:12pm UTC |
Race Finish | May 25, 2025 12:27:06pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 12.20 |
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?") |