View Pit Stop page for race #2 by devinlin89 — Ghost race
View profile for Devin (devinlin89)
Official speed | 57.16 wpm (57.10 seconds elapsed during race) |
---|---|
Race Start | August 16, 2023 1:34:54pm UTC |
Race Finish | August 16, 2023 1:35:51pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. inusah (52.82 wpm) |
Accuracy | 95.0% |
Points | 37.16 |
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?") |