Multiply 2 Different List using numpy
import numpy as np
hard_work= [2,3,4,5] smart_work=[4,5,6,7]
Multiply the List
success = np.array(hard_work)*np.array(smart_work)
success
array([ 8, 15, 24, 35])