View Pit Stop page for race #4 by nsm101 — Ghost race
View profile for NSM101 (nsm101)
Official speed | 22.61 wpm (144.36 seconds elapsed during race) |
---|---|
Race Start | May 27, 2025 5:59:27am UTC |
Race Finish | May 27, 2025 6:01:52am UTC |
Outcome | No win (2 of 3) |
Accuracy | 91.0% |
Points | 14.69 |
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?") |