View Pit Stop page for race #2 by dudicolo — Ghost race
View profile for BOB (dudicolo)
Official speed | 33.30 wpm (98.02 seconds elapsed during race) |
---|---|
Race Start | June 25, 2023 3:58:40pm UTC |
Race Finish | June 25, 2023 4:00:18pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 96.0% |
Points | 21.64 |
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?") |