View Pit Stop page for race #1 by rajkumar_buddha — Ghost race
View profile for Rajkumar (rajkumar_buddha)
Official speed | 47.20 wpm (69.15 seconds elapsed during race) |
---|---|
Race Start | May 27, 2023 6:48:38am UTC |
Race Finish | May 27, 2023 6:49:47am UTC |
Outcome | Win (1 of 4) |
Opponents |
2. utsab_bera (37.22 wpm) |
Accuracy | 95.0% |
Points | 30.68 |
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?") |