View Pit Stop page for race #26 by omer_nukic — Ghost race
View profile for Omer (omer_nukic)
Official speed | 40.32 wpm (80.95 seconds elapsed during race) |
---|---|
Race Start | October 8, 2021 11:25:55pm UTC |
Race Finish | October 8, 2021 11:27:16pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 26.21 |
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?") |