Race Result Details |
Racer | Willian Martinez Guzman (willian99) |
Race Number | 4 |
Date | Sun, 9 Jun 2024 2:40:25 |
Universe | code |
Speed |
26 WPM
![]() |
Accuracy | 95.3% |
Rank | 3rd place (out of 12) |
Opponents | alexiscc99 (6th place) elamigo246 (2nd place) jhiym_julian_clemente (5th place) lizmariela (4th place) luis_rodrigo (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)
|