Whitecap (whitecap)

Race #58

View Pit Stop page for race #58 by whitecapGhost race

View profile for Whitecap (whitecap)

Official speed 62.18 wpm (52.49 seconds elapsed during race)
Race Start September 19, 2023 11:30:52am UTC
Race Finish September 19, 2023 11:31:44am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 40.42
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?")