View Pit Stop page for race #319 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 100.23 wpm (31.37 seconds elapsed during race) |
---|---|
Race Start | August 8, 2019 3:42:13am UTC |
Race Finish | August 8, 2019 3:42:44am UTC |
Outcome | No win (2 of 3) |
Opponents |
1. arc_sec (111.19 wpm) 3. lesirh (72.31 wpm) |
Accuracy | 97.0% |
Points | 65.15 |
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?") |