View Pit Stop page for race #5 by coffe789 — Ghost race
View profile for Coffe (coffe789)
Official speed | 61.00 wpm (53.51 seconds elapsed during race) |
---|---|
Race Start | August 5, 2023 1:35:55pm UTC |
Race Finish | August 5, 2023 1:36:49pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 39.65 |
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?") |