View Pit Stop page for race #4 by karagat — Ghost race
View profile for Karagat (karagat)
Official speed | 18.07 wpm (180.63 seconds elapsed during race) |
---|---|
Race Start | June 4, 2023 8:52:19am UTC |
Race Finish | June 4, 2023 8:55:20am UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 11.74 |
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?") |