View Pit Stop page for race #61 by lesirh — Ghost race
View profile for LeSirH (lesirh)
Official speed | 88.36 wpm (35.58 seconds elapsed during race) |
---|---|
Race Start | August 14, 2019 4:15:42pm UTC |
Race Finish | August 14, 2019 4:16:18pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. arc_sec (111.22 wpm) |
Accuracy | 95.0% |
Points | 57.43 |
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?") |