Python Roll kostka 100 razy

import random

roll = [random.randint(1,6) for x in range(100)]

print(roll)
Joe Welkom