Answers for "Multiplying numbers of the list Create a list which contains some numbers and multiply all the numbers in the list."

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

Code answers related to "Multiplying numbers of the list Create a list which contains some numbers and multiply all the numbers in the list."

Python Answers by Framework

Browse Popular Code Answers by Language