Table of Contents
Find product of two floating point numbers in Python
In this article, we will discuss the concept of Find product of two floating point numbers in Python
In this post, we are going to learn how to write a program to calculate product of two floating point numbers using different methods in Python program.
Code to calculate product of two floats
Code to calculate product of two floating point numbers
In this program, we will calculate product of two floating point numbers using variable declaration and initialization in Python language
Program 1
num1=2.5 #variable declaration and initialization for num1 num2=5.4 #variable declaration and initialization for num2 product=num1 * num2 #perform multiplication operation print("The product of given numbers is: ",product); #display product
When the above code is executed, it produces the following result
The product of given numbers is: 13.5
Code to calculate product of two floating point numbers – input from user
In this program, we will calculate product of two floating point numbers using takes input from the user in Python language
Program 2
num1=float(input("Enter the first number: ")) num2=float(input("Enter the second number: ")) #Takes input from the user for num1 , num2 multiply=num1*num2 #calculate product of two numbers print("The product is: ",multiply) #display the output
When the above code is executed, it produces the following result
Enter the first number: 2.5 Enter the second number: 5.6 The product is: 14.0
Code to calculate product of two floating point numbers – using function
In this program, we will calculate product of two floating point numbers using function in Python language
Program 3
#Python program to multiply two floating point numbers using function def mul_Float(a,b): #function definition for multiply two numbers multiply=a*b #calculate multiplication of two numbers return multiply; #return value to main num1=float(input("Enter the first number: ")) num2=float(input("Enter the second number: ")) #variable declaration and initialization print("The product is: ",mul_Float(num1,num2)) #Call the function and display output
When the above code is executed, it produces the following result
Enter the first number: 2.4 Enter the second number: 3.4 The product is: 8.16
Suggested post
Similar post
Java code to product of two numbers
C code to product of two numbers
C++ code to product of two numbers
Python code to product of two numbers
Java code to Calculate product of two floating point numbers
C code to Calculate product of two floating point numbers
C++ code to Calculate product of two floating point numbers
Python code to Calculate product of two floating point numbers