list multiplication python code example
Example 1: python multiply list
a_list = [1, 2, 3]
a_list = [item * 2 for item in a_list]
print(a_list)
OUTPUT
[2, 4, 6]
Example 2: how to multiply in python
Multiply two integer numbers
num1=int(input("Enter the first number: "))
num2=int(input("Enter the second number: "))
mul=num1*num2;
print("the product of given numbers is: ",mul)
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