import random dice = [4, 6, 8, 10, 12, 20] for d in dice: num = random.randint(1,d) print(f"D{d}: {num}") Komon Dice

My Dice