View Pit Stop page for race #399 by tikpyp — Ghost race
View profile for vloek (tikpyp)
Official speed | 67.43 wpm (48.41 seconds elapsed during race) |
---|---|
Race Start | May 17, 2025 8:47:11pm UTC |
Race Finish | May 17, 2025 8:47:59pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 100.0% |
Points | 43.83 |
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?") |