View Pit Stop page for race #4 by anonymousxop — Ghost race
View profile for Johan (anonymousxop)
Official speed | 28.27 wpm (115.46 seconds elapsed during race) |
---|---|
Race Start | May 10, 2025 2:04:09pm UTC |
Race Finish | May 10, 2025 2:06:04pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 92.0% |
Points | 18.37 |
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?") |