View Pit Stop page for race #2 by sysoutme — Ghost race
View profile for Sumit (sysoutme)
| Official speed | 52.51 wpm (62.16 seconds elapsed during race) |
|---|---|
| Race Start | September 13, 2022 11:59:25am UTC |
| Race Finish | September 13, 2022 12:00:27pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 95.0% |
| Points | 34.13 |
| 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?") |