View Pit Stop page for race #2 by dev7n — Ghost race
View profile for ❥evan (dev7n)
| Official speed | 35.78 wpm (87.87 seconds elapsed during race) |
|---|---|
| Race Start | November 27, 2018 1:50:03pm UTC |
| Race Finish | November 27, 2018 1:51:31pm UTC |
| Outcome | No win (3 of 6) |
| Accuracy | 91.0% |
| Points | 23.26 |
| 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?") |