View Pit Stop page for race #263 by photondestroyer — Ghost race
View profile for The don (photondestroyer)
| Official speed | 61.32 wpm (53.23 seconds elapsed during race) |
|---|---|
| Race Start | February 12, 2023 5:51:24am UTC |
| Race Finish | February 12, 2023 5:52:17am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 95.0% |
| Points | 39.86 |
| 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?") |