taco (tacocat0)

Race #1

View Pit Stop page for race #1 by tacocat0Ghost race

View profile for taco (tacocat0)

Official speed 50.02 wpm (65.25 seconds elapsed during race)
Race Start August 30, 2022 1:34:56pm UTC
Race Finish August 30, 2022 1:36:01pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 32.51
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?")