View Pit Stop page for race #27 by daniel3131 — Ghost race
View profile for daniel3131 (daniel3131)
Official speed | 73.98 wpm (42.50 seconds elapsed during race) |
---|---|
Race Start | October 16, 2019 2:08:54pm UTC |
Race Finish | October 16, 2019 2:09:37pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 48.09 |
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?") |