View Pit Stop page for race #22 by stop__ — Ghost race
View profile for Stop (stop__)
Official speed | 36.21 wpm (90.14 seconds elapsed during race) |
---|---|
Race Start | April 15, 2023 10:01:23pm UTC |
Race Finish | April 15, 2023 10:02:53pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 23.54 |
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?") |