View Pit Stop page for race #1 by cyan_ghost — Ghost race
View profile for Cyan (cyan_ghost)
Official speed | 51.74 wpm (63.08 seconds elapsed during race) |
---|---|
Race Start | June 9, 2023 7:44:19pm UTC |
Race Finish | June 9, 2023 7:45:23pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 33.63 |
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?") |