View Pit Stop page for race #1 by synthecypher — Ghost race
View profile for Joshua (synthecypher)
Official speed | 57.04 wpm (55.12 seconds elapsed during race) |
---|---|
Race Start | September 27, 2019 1:34:45pm UTC |
Race Finish | September 27, 2019 1:35:40pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 97.0% |
Points | 37.07 |
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?") |