View Pit Stop page for race #2 by leondreamed — Ghost race
View profile for www.tunnel.dev (leondreamed)
Official speed | 116.79 wpm (27.95 seconds elapsed during race) |
---|---|
Race Start | September 23, 2022 8:15:00pm UTC |
Race Finish | September 23, 2022 8:15:27pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 98.0% |
Points | 75.91 |
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?") |