mdlp (mdlp)

Race #4

View Pit Stop page for race #4 by mdlpGhost race

View profile for mdlp (mdlp)

Official speed 47.70 wpm (68.43 seconds elapsed during race)
Race Start September 9, 2023 11:25:06pm UTC
Race Finish September 9, 2023 11:26:14pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 31.01
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?")