Race Result Details |
Racer | Fred Chavez Ruiz (chavez_fred) |
Race Number | 5 |
Date | Fri, 19 Sep 2025 15:52:25 |
Universe | code |
Speed |
26 WPM
![]() |
Accuracy | 96.1% |
Rank | 8th place (out of 8) |
Opponents | jgary1 (7th 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)
|