View Pit Stop page for race #5 by iverjoel — Ghost race
View profile for iver (iverjoel)
Official speed | 20.36 wpm (160.31 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 5:02:04pm UTC |
Race Finish | June 6, 2025 5:04:44pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 88.0% |
Points | 13.24 |
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?") |