View Pit Stop page for race #122 by sidd_ — Ghost race
Official speed | 116.46 wpm (27.00 seconds elapsed during race) |
---|---|
Race Start | February 14, 2019 3:40:44am UTC |
Race Finish | February 14, 2019 3:41:11am UTC |
Outcome | Win (1 of 3) |
Opponents |
2. deroche1 (92.14 wpm) 3. pivot5 (84.34 wpm) |
Accuracy | 99.0% |
Points | 75.70 |
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?") |