Race Result Details |
Racer | Cristian Flores (elamigo246) |
Race Number | 6 |
Date | Sun, 9 Jun 2024 2:40:17 |
Universe | code |
Speed |
28 WPM
![]() |
Accuracy | 92.8% |
Rank | 2nd place (out of 12) |
Opponents | alexiscc99 (6th 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)
|