View Pit Stop page for race #82 by jgary199 — Ghost race
View profile for J Gary (jgary199)
Official speed | 46.54 wpm (70.13 seconds elapsed during race) |
---|---|
Race Start | June 26, 2025 12:43:08am UTC |
Race Finish | June 26, 2025 12:44:18am UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 30.25 |
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?") |