Python Roll Würfel 100 Mal

import random

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

print(roll)
Joe Welkom