How do you multiply n numbers in python?

Given a list, print the value obtained after multiplying all numbers in a list. 

Examples: 

Input :  list1 = [1, 2, 3] 
Output : 6 
Explanation: 1*2*3=6 
Input : list1 = [3, 2, 4] 
Output : 24 

Method 1: Traversal

Initialize the value of the product to 1[not 0 as 0 multiplied with anything returns zero]. Traverse till the end of the list, multiply every number with the product. The value stored in the product at the end will give you your final answer.

Below is the Python implementation of the above approach:  

Python

def multiplyList[myList]:

    result = 1

    for x in myList:

        result = result * x

    return result

list1 = [1, 2, 3]

list2 = [3, 2, 4]

print[multiplyList[list1]]

print[multiplyList[list2]]

Method 2: Using numpy.prod[]

We can use numpy.prod[] from import numpy to get the multiplication of all the numbers in the list. It returns an integer or a float value depending on the multiplication result.

Below is the Python3 implementation of the above approach:  

Python3

import numpy

list1 = [1, 2, 3]

list2 = [3, 2, 4]

result1 = numpy.prod[list1]

result2 = numpy.prod[list2]

print[result1]

print[result2]

Output: 
 

6
24 

Method 3 Using lambda function: Using numpy.array

Lambda’s definition does not include a “return” statement, it always contains an expression that is returned. We can also put a lambda definition anywhere a function is expected, and we don’t have to assign it to a variable at all. This is the simplicity of lambda functions. The reduce[] function in Python takes in a function and a list as an argument. The function is called with a lambda function and a list and a new reduced result is returned. This performs a repetitive operation over the pairs of the list.

Below is the Python3 implementation of the above approach:  

Python3

from functools import reduce

list1 = [1, 2, 3]

list2 = [3, 2, 4]

result1 = reduce[[lambda x, y: x * y], list1]

result2 = reduce[[lambda x, y: x * y], list2]

print[result1]

print[result2]

Method 4 Using prod function of math library: Using math.prod

Starting Python 3.8, a prod function has been included in the math module in the standard library, thus no need to install external libraries.

Below is the Python3 implementation of the above approach:  

Python3

import math

list1 = [1, 2, 3]

list2 = [3, 2, 4]

result1 = math.prod[list1]

result2 = math.prod[list2]

print[result1]

print[result2]

Output: 
 

6
24 

Method 5: Using mul[] function of operator module. 

First we have to import the operator module then using the mul[] function of operator module multiplying the all values in the list. 

Python3

from operator import*

list1 = [1, 2, 3]

m = 1

for i in list1:

    m = mul[i, m]

print[m]

Method 6: Using traversal by index

Python3

def multiplyList[myList] :

    result = 1

    for i in range[0,len[myList]]:

        result = result * myList[i]

    return result

list1 = [1, 2, 3]

list2 = [3, 2, 4]

print[multiplyList[list1]]

print[multiplyList[list2]]


How do you multiply multiple numbers in Python?

We can use numpy. prod[] from import numpy to get the multiplication of all the numbers in the list. It returns an integer or a float value depending on the multiplication result.

How do you multiply every number in a list Python?

Use the syntax [element * number for element in list] to multiply each element in list by number ..
a_list = [1, 2, 3].
multiplied_list = [element * 2 for element in a_list].
print[multiplied_list].

How do you multiply a list in Python?

How to multiply two lists in Python.
list1 = [1, 2, 3].
list2 = [4, 5, 6].
products = [] initialize result list..
for num1, num2 in zip[list1, list2]:.
products. append[num1 * num2].
print[products] [[1 * 4], [2 * 5], [3 * 6]].

How do you find the product of n numbers in Python?

Product of Digits of the number using Python.
Flow Chart Design..
Program or Solution. num = int[input["enter a number"]] n = num. ... .
Output..
Program Explanation. initialize product is equal to 1..

Chủ Đề