multiply list by 2 python code example
Example 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]
Example 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]
Example 3: multiply each element in list python
a_list = [1, 2, 3]
multiplied_list = [element * 2 for element in a_list]
# [2, 4, 6]