mdlp (mdlp)

Race #7

View Pit Stop page for race #7 by mdlpGhost race

View profile for mdlp (mdlp)

Official speed 54.46 wpm (59.93 seconds elapsed during race)
Race Start September 9, 2023 11:29:40pm UTC
Race Finish September 9, 2023 11:30:40pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 35.40
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?")