View Pit Stop page for race #1 by svitdolenc — Ghost race
View profile for SvitDolenc (svitdolenc)
| Official speed | 33.24 wpm (98.19 seconds elapsed during race) |
|---|---|
| Race Start | April 29, 2025 10:17:33am UTC |
| Race Finish | April 29, 2025 10:19:11am UTC |
| Outcome | No win (3 of 4) |
| Opponents |
1. zigc (45.83 wpm) |
| Accuracy | 94.0% |
| Points | 21.61 |
| 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?") |