Augusto Aguilar (fa1progra)

Race #14

View Pit Stop page for race #14 by fa1prograGhost race

View profile for Augusto Aguilar (fa1progra)

Official speed 32.59 wpm (100.15 seconds elapsed during race)
Race Start May 15, 2025 12:49:58am UTC
Race Finish May 15, 2025 12:51:38am UTC
Outcome Win (1 of 3)
Accuracy 90.0%
Points 21.18
Text #10017 (Length: 272 characters)

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?")