oleg (oleg_ros)

Race #176

View Pit Stop page for race #176 by oleg_rosGhost race

View profile for oleg (oleg_ros)

Official speed 34.08 wpm (95.77 seconds elapsed during race)
Race Start June 10, 2025 2:15:27pm UTC
Race Finish June 10, 2025 2:17:02pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 22.15
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?")