View Pit Stop page for race #322 by frame_ability — Ghost race
View profile for PicturingFrames (frame_ability)
| Official speed | 80.83 wpm (40.38 seconds elapsed during race) |
|---|---|
| Race Start | November 4, 2022 11:57:15am UTC |
| Race Finish | November 4, 2022 11:57:55am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 52.54 |
| 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?") |