Race Result Details |
Racer | Alvaro Moyata (tocsky) |
Race Number | 8 |
Date | Fri, 23 May 2025 1:31:35 |
Universe | code |
Speed |
23 WPM
![]() |
Accuracy | 93.5% |
Rank | 9th place (out of 13) |
Opponents | alexbeltrantarqui (3rd place) ariane_salazar (6th place) maria_ortega10 (1st place) pedro_serrudo (5th place) sarai_vega012 (8th place) sergio_theaux (2nd place) sharick_chungara (4th place) yarot (7th 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)
|