View Pit Stop page for race #2 by drepram — Ghost race
View profile for Andre Pramaditya (drepram)
| Official speed | 89.11 wpm (36.63 seconds elapsed during race) |
|---|---|
| Race Start | May 26, 2025 6:08:21am UTC |
| Race Finish | May 26, 2025 6:08:58am UTC |
| Outcome | No win (2 of 25) |
| Opponents |
4. mr_jabi (80.04 wpm) 6. alvxx (74.97 wpm) 11. yanresing (66.46 wpm) 13. theomt1 (59.67 wpm) |
| Accuracy | 97.0% |
| Points | 57.92 |
| 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?") |