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