View Pit Stop page for race #5 by traben — Ghost race
View profile for lavé (traben)
Official speed | 80.73 wpm (40.43 seconds elapsed during race) |
---|---|
Race Start | November 3, 2021 5:18:15pm UTC |
Race Finish | November 3, 2021 5:18:56pm UTC |
Outcome | No win (2 of 3) |
Opponents |
1. poem (86.23 wpm) 3. scraex (70.44 wpm) |
Accuracy | 96.0% |
Points | 52.48 |
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?") |