Krefars (krefars)

Race #3

View Pit Stop page for race #3 by krefarsGhost race

View profile for Krefars (krefars)

Official speed 48.37 wpm (67.48 seconds elapsed during race)
Race Start May 26, 2023 4:51:42pm UTC
Race Finish May 26, 2023 4:52:50pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 31.44
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?")