Edwin (edwinalrwon)

Race #1

View Pit Stop page for race #1 by edwinalrwonGhost race

View profile for Edwin (edwinalrwon)

Official speed 31.12 wpm (104.88 seconds elapsed during race)
Race Start May 31, 2023 1:09:22pm UTC
Race Finish May 31, 2023 1:11:07pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 20.23
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?")