Race Result Details |
Racer | Alexis Edwin Canaza Castillo (alexiscc99) |
Race Number | 2 |
Date | Sun, 9 Jun 2024 2:40:42 |
Universe | code |
Speed |
23 WPM
![]() |
Accuracy | 94.7% |
Rank | 6th place (out of 12) |
Opponents | elamigo246 (2nd place) jhiym_julian_clemente (5th 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)
|