Race Result Details |
| Racer | tooheeee (theomt1) |
| Race Number | 2 |
| Date | Mon, 26 May 2025 6:09:15 |
| Universe | code |
| Speed |
60 WPM
Try to beat?
|
| Accuracy | 96.5% |
| Rank | 13th place (out of 25) |
| Opponents | alvxx (6th place) drepram (2nd place) jordanmarz (8th place) mr_jabi (4th place) yanresing (11th place) |
Text typed:
|
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?")
— (other)
by www.pythonforbeginners.com/
(see stats)
|
