Answers for "How do you multiply integers and floats in a list in Python?"

1

python element wise multiplication list

# element-wise multiplication of x & y
>>>x = [1,2,3,4]
>>>y = [2,3,4,5]
>>>[a*b for a,b in zip(x,y)]
[2, 6, 12, 20]
Posted by: Guest on June-05-2020
2

multiply each element in list python

a_list = [1, 2, 3]

multiplied_list = [element * 2 for element in a_list]

# [2, 4, 6]
Posted by: Guest on December-16-2020

Code answers related to "How do you multiply integers and floats in a list in Python?"

Python Answers by Framework

Browse Popular Code Answers by Language