View Pit Stop page for race #15 by andrewkcleeuc — Ghost race
View profile for Wreckium626 (andrewkcleeuc)
| Official speed | 67.21 wpm (48.56 seconds elapsed during race) |
|---|---|
| Race Start | September 20, 2025 8:09:16pm UTC |
| Race Finish | September 20, 2025 8:10:05pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 98.0% |
| Points | 43.69 |
| 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?") |