View Pit Stop page for race #22 by styrofoam — Ghost race
View profile for police (styrofoam)
Official speed | 78.55 wpm (40.03 seconds elapsed during race) |
---|---|
Race Start | October 31, 2018 5:21:36pm UTC |
Race Finish | October 31, 2018 5:22:16pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 97.0% |
Points | 51.06 |
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?") |