Answers for "list multiplication python"

1

python list multiplication

import numpy
list1 = [1, 2, 3]
 
# using numpy.prod() to get the multiplications
result = numpy.prod(list1)

# Result = 6
Posted by: Guest on July-12-2021
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
4

how to multiply in python

Multiply two integer numbers

num1=int(input("Enter the first number: "))
#input value for variable num1
num2=int(input("Enter the second number: "))
#input value for variable num2
mul=num1*num2;
#perform multiplication operation
print("the product of given numbers is: ",mul)
#display the product
  
When the above code is compiled and executed, it produces the following results
Enter the first number: 23
Enter the second number is: 32
the product of the given numbers is 736
Posted by: Guest on April-01-2020

Code answers related to "list multiplication python"

Python Answers by Framework

Browse Popular Code Answers by Language