Answers for "multiplying numbers in a list python"

3

python multiply list

a_list = [1, 2, 3]

a_list = [item * 2 for item in a_list]

print(a_list)
OUTPUT
[2, 4, 6]
Posted by: Guest on July-26-2020
2

python multiply list bt number

my_list = [1, 2, 3, 4, 5]
my_new_list = [i * 5 for i in my_list]

>>> print(my_new_list)
[5, 10, 15, 20, 25]
Posted by: Guest on February-26-2020
0

python multiply all elements in list

import numpy as np

list1 = [1,2,3,4,5]
result = np.prod(list1)

print(result)
>>>120
Posted by: Guest on November-14-2020

Code answers related to "multiplying numbers in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language