(atorpy)

Race #14

View Pit Stop page for race #14 by atorpyGhost race

View profile for (atorpy)

Official speed 55.18 wpm (59.15 seconds elapsed during race)
Race Start May 23, 2022 5:27:27pm UTC
Race Finish May 23, 2022 5:28:26pm UTC
Outcome No win (1 of 1)
Accuracy 95.0%
Points 35.87
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?")