dicerolls8.py

Created by nick-koberstein

Created on August 30, 2023

113 Bytes


from random import *
seed(1)
a=[]
for i in range(8):
  b=randint(1,6)
  a.append(b)
  
print(a)