View Pit Stop page for race #95 by snayder123_ — Ghost race
View profile for Sneyder Nunjar (snayder123_)
Official speed | 48.90 wpm (66.75 seconds elapsed during race) |
---|---|
Race Start | July 3, 2025 8:03:12pm UTC |
Race Finish | July 3, 2025 8:04:19pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 31.78 |
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?") |