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