View Pit Stop page for race #5 by zzdroxbazz — Ghost race
View profile for Sergio Deybit Colque berazain (zzdroxbazz)
Official speed | 29.00 wpm (112.55 seconds elapsed during race) |
---|---|
Race Start | September 25, 2024 1:45:00am UTC |
Race Finish | September 25, 2024 1:46:52am UTC |
Outcome | No win (2 of 2) |
Accuracy | 94.0% |
Points | 18.85 |
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?") |