random1.py

Created by nick-koberstein

Created on August 30, 2023

110 Bytes


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

print(a)