View Pit Stop page for race #1 by darthgeorge — Ghost race
View profile for Darth George (darthgeorge)
Official speed | 28.58 wpm (114.21 seconds elapsed during race) |
---|---|
Race Start | May 23, 2023 10:39:22pm UTC |
Race Finish | May 23, 2023 10:41:17pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 18.58 |
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?") |