(jasimk)

Race #22

View Pit Stop page for race #22 by jasimkGhost race

View profile for (jasimk)

Official speed 57.05 wpm (57.21 seconds elapsed during race)
Race Start April 25, 2023 5:22:25am UTC
Race Finish April 25, 2023 5:23:23am UTC
Outcome No win (1 of 1)
Accuracy 96.0%
Points 37.08
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?")