View Pit Stop page for race #50 by predator_1001 — Ghost race
View profile for Predator (predator_1001)
| Official speed | 32.01 wpm (101.97 seconds elapsed during race) |
|---|---|
| Race Start | August 22, 2024 7:02:59am UTC |
| Race Finish | August 22, 2024 7:04:41am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 95.0% |
| Points | 20.81 |
| 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?") |