Find product of two floating numbers
Table of Contents
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.
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
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
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
Multiply two numbers in Java using scanner| 5 different ways In this article, we will…
5 Different ways to Divide two numbers in Java using scanner In this article, we…
Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…
10 ways to subtract two numbers in Java In this article, we will discuss the…
Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…
How to Divide two numbers in Java| 5 different ways In this article, we will…
This website uses cookies.