Python Roll Dice 100 fois

import random

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

print(roll)
Joe Welkom