Thomas (eshes)

Race #1

View Pit Stop page for race #1 by eshesGhost race

View profile for Thomas (eshes)

Official speed 53.05 wpm (61.53 seconds elapsed during race)
Race Start November 25, 2021 1:05:16am UTC
Race Finish November 25, 2021 1:06:18am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 34.48
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?")