spondunoob (spondulix)

Race #330

View Pit Stop page for race #330 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 111.84 wpm (28.11 seconds elapsed during race)
Race Start August 8, 2019 11:37:36pm UTC
Race Finish August 8, 2019 11:38:04pm UTC
Outcome Win (1 of 4)
Opponents 2. lesirh (71.19 wpm)
3. vfctyrant (62.84 wpm)
Accuracy 99.0%
Points 72.69
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?")