View Pit Stop page for race #505 by tikpyp — Ghost race
View profile for vloek (tikpyp)
| Official speed | 64.09 wpm (50.93 seconds elapsed during race) |
|---|---|
| Race Start | November 22, 2025 2:39:23pm UTC |
| Race Finish | November 22, 2025 2:40:14pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 99.0% |
| Points | 41.66 |
| 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?") |