View Pit Stop page for race #117 by sidd_ — Ghost race
Official speed | 109.02 wpm (28.84 seconds elapsed during race) |
---|---|
Race Start | February 14, 2019 3:18:07am UTC |
Race Finish | February 14, 2019 3:18:36am UTC |
Outcome | No win (2 of 4) |
Opponents |
1. arenasnow (134.65 wpm) 3. deroche1 (104.30 wpm) 4. poem (87.92 wpm) |
Accuracy | 98.0% |
Points | 70.86 |
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?") |