Race Result Details |
Racer | joel gary (jgary1) |
Race Number | 7 |
Date | Fri, 19 Sep 2025 15:52:23 |
Universe | code |
Speed |
26 WPM
![]() |
Accuracy | 90.9% |
Rank | 7th place (out of 8) |
Opponents | chavez_fred (8th place) jhosmar_mamani (2nd place) manu_233 (3rd place) marco_soria (6th place) noelbm (4th place) rogerflores (1st 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)
|