View Pit Stop page for race #81 by sidd_ — Ghost race
Official speed | 121.78 wpm (25.82 seconds elapsed during race) |
---|---|
Race Start | January 28, 2019 5:45:39am UTC |
Race Finish | January 28, 2019 5:46:05am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. type4harambe (71.57 wpm) |
Accuracy | 99.0% |
Points | 79.16 |
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?") |