View Pit Stop page for race #27 by aabbcc333 — Ghost race
View profile for Raunak (aabbcc333)
| Official speed | 68.09 wpm (47.94 seconds elapsed during race) |
|---|---|
| Race Start | November 7, 2025 12:12:24pm UTC |
| Race Finish | November 7, 2025 12:13:12pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 44.26 |
| 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?") |