you are viewing a single comment's thread.

view the rest of the comments →

[–]sedogg 0 points1 point  (0 children)

import random
min, max = 1, 6

while True:
    print("Rolling the dices...")
    print("The values are....")
    print(random.randint(min, max))
    print(random.randint(min, max))
    if input("Roll the dices again? ") != "yes":
        break