View Pit Stop page for race #28 by aj4yyy — Ghost race
View profile for Ajay (aj4yyy)
| Official speed | 27.58 wpm (118.35 seconds elapsed during race) |
|---|---|
| Race Start | August 5, 2025 12:48:04pm UTC |
| Race Finish | August 5, 2025 12:50:02pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 94.0% |
| Points | 17.92 |
| 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?") |