View Pit Stop page for race #15 by programmerpractice — Ghost race
View profile for symbolsnumbers (programmerpractice)
| Official speed | 41.47 wpm (78.71 seconds elapsed during race) |
|---|---|
| Race Start | June 1, 2023 5:01:35am UTC |
| Race Finish | June 1, 2023 5:02:54am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 93.0% |
| Points | 26.95 |
| 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?") |