I wonder how can I multiply each element in two different lists.
For example :
list_a = [1,2,3,4,5]
list_b = [10,20,30,40,50]
I want to make it 1X10 2X20 3X30 4X40 5X50
so that the result will be 10, 40, 90, 160, 250
I would really appreciate if you can help me.