Progress is never linear! (cloudjumper)

Race #162

View Pit Stop page for race #162 by cloudjumperGhost race

View profile for Progress is never linear! (cloudjumper)

Official speed 102.68 wpm (31.79 seconds elapsed during race)
Race Start June 11, 2023 9:18:35pm UTC
Race Finish June 11, 2023 9:19:07pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 66.75
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?")