I have 2 lists which each have 10 value and i want to multiply the values.
import random
n1_r = random.sample(range(1, 100), 10)
n2_r = random.sample(range(1, 100), 10)
n1 = n1_r
n2 = n2_r
for example I want to multiply the first value from n1 with the first value in n2 and so on?
im expecting a new list of 10 values stored in n3