View Pit Stop page for race #30 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
Official speed | 110.76 wpm (28.39 seconds elapsed during race) |
---|---|
Race Start | August 8, 2019 3:37:01am UTC |
Race Finish | August 8, 2019 3:37:29am UTC |
Outcome | Win (1 of 3) |
Opponents |
2. spondulix (104.63 wpm) 3. lesirh (73.68 wpm) |
Accuracy | 99.0% |
Points | 72.00 |
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?") |