View Pit Stop page for race #136 by liz_mariela — Ghost race
View profile for Liz Mariela Perez Gervacio (liz_mariela)
Official speed | 32.58 wpm (100.18 seconds elapsed during race) |
---|---|
Race Start | July 2, 2025 6:23:39pm UTC |
Race Finish | July 2, 2025 6:25:19pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 21.18 |
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?") |