multiplication in python
Input1 = int(input("First number:- "))
Input2 = int(input("Second input:- "))
print(Input1 * Input2)
multiplication in python
Input1 = int(input("First number:- "))
Input2 = int(input("Second input:- "))
print(Input1 * Input2)
python multiply list
a_list = [1, 2, 3]
a_list = [item * 2 for item in a_list]
print(a_list)
OUTPUT
[2, 4, 6]
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
multiplication of two or more numbers in python
# multiplication of two or more numbers
def multiple(*a):
result = 1
for i in a:
result = result * i
return result
# insert any number of arguments for multiplication, example:
res = multiple(12, 2, 5)
print(res)
# In this example, code output is = 120
multiplication in python
#* is the multiplication symbol in Python, so:
print(2 * 3)
#output: 6
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us