View Pit Stop page for race #27 by ajansen1318 — Ghost race
View profile for AJ (ajansen1318)
| Official speed | 41.88 wpm (77.94 seconds elapsed during race) |
|---|---|
| Race Start | October 20, 2023 1:03:30am UTC |
| Race Finish | October 20, 2023 1:04:48am UTC |
| Outcome | No win (2 of 2) |
| Accuracy | 93.0% |
| Points | 27.22 |
| 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?") |