View Pit Stop page for race #6 by phlogistique — Ghost race
View profile for Noé (phlogistique)
Official speed | 49.20 wpm (63.90 seconds elapsed during race) |
---|---|
Race Start | December 26, 2018 12:46:03pm UTC |
Race Finish | December 26, 2018 12:47:07pm UTC |
Outcome | No win (3 of 4) |
Accuracy | 96.0% |
Points | 31.98 |
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?") |