View Pit Stop page for race #5 by curiouschild — Ghost race
View profile for CuriousChild (curiouschild)
Official speed | 40.69 wpm (80.22 seconds elapsed during race) |
---|---|
Race Start | September 4, 2021 7:12:01am UTC |
Race Finish | September 4, 2021 7:13:22am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. teslateslatesla (45.02 wpm) |
Accuracy | 93.0% |
Points | 26.45 |
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?") |