Race Result Details |
Racer | Jhimy Julian Clemente (jhiym_julian_clemente) |
Race Number | 2 |
Date | Sun, 9 Jun 2024 2:40:37 |
Universe | code |
Speed |
24 WPM
![]() |
Accuracy | 94.6% |
Rank | 5th place (out of 12) |
Opponents | alexiscc99 (6th place) elamigo246 (2nd place) lizmariela (4th place) luis_rodrigo (1st place) willian99 (3rd 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)
|