spondunoob (spondulix)

Race #11

View Pit Stop page for race #11 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 80.49 wpm (39.06 seconds elapsed during race)
Race Start February 23, 2019 9:49:06pm UTC
Race Finish February 23, 2019 9:49:45pm UTC
Outcome No win (2 of 3)
Opponents 3. loboru (67.68 wpm)
Accuracy 97.0%
Points 52.32
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?")