Race Result Details |
Racer | Manuel_Farfan (manu_233) |
Race Number | 31 |
Date | Fri, 19 Sep 2025 15:51:47 |
Universe | code |
Speed |
37 WPM
![]() |
Accuracy | 91.2% |
Rank | 3rd place (out of 8) |
Opponents | chavez_fred (8th place) jgary1 (7th place) jhosmar_mamani (2nd 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)
|