View Pit Stop page for race #10 by t111h — Ghost race
Official speed | 32.55 wpm (100.28 seconds elapsed during race) |
---|---|
Race Start | March 22, 2022 11:59:38pm UTC |
Race Finish | March 23, 2022 12:01:18am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 21.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?") |