View Pit Stop page for race #1 by urwrstkn8mare — Ghost race
View profile for urwrstkn8mare (urwrstkn8mare)
Official speed | 56.78 wpm (57.48 seconds elapsed during race) |
---|---|
Race Start | April 13, 2023 6:04:42am UTC |
Race Finish | April 13, 2023 6:05:39am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 36.90 |
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?") |