Taush (tsampley)

Race #28

View Pit Stop page for race #28 by tsampleyGhost race

View profile for Taush (tsampley)

Official speed 66.21 wpm (49.30 seconds elapsed during race)
Race Start July 1, 2021 9:33:22pm UTC
Race Finish July 1, 2021 9:34:11pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 43.04
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?")