View Pit Stop page for race #24 by sarai_vega012 — Ghost race
View profile for Saraí (sarai_vega012)
Official speed | 27.11 wpm (120.40 seconds elapsed during race) |
---|---|
Race Start | June 28, 2025 1:02:25am UTC |
Race Finish | June 28, 2025 1:04:25am UTC |
Outcome | No win (5 of 6) |
Opponents |
4. nessa2 (28.22 wpm) |
Accuracy | 94.0% |
Points | 17.62 |
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?") |