View Pit Stop page for race #2 by hyper_racer — Ghost race
View profile for kewl (hyper_racer)
Official speed | 42.56 wpm (73.87 seconds elapsed during race) |
---|---|
Race Start | November 1, 2018 3:40:20pm UTC |
Race Finish | November 1, 2018 3:41:34pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. styrofoam (87.10 wpm) |
Accuracy | 94.0% |
Points | 27.66 |
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?") |