Answers for "how to multiply all numbers in a list in python"

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

Code answers related to "how to multiply all numbers in a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language