multipication

Find product of two floating point numbers in Python

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

Data type in Python language

Operator in Python language

 

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

Karmehavannan

Recent Posts

Multiply two numbers in Java using scanner| 5 different ways

Multiply two numbers in Java using scanner| 5 different ways In this article, we will…

3 months ago

5 different ways to Divide two numbers in Java using scanner

5 Different ways to Divide two numbers in Java using scanner In this article, we…

3 months ago

Learn 8 Ways to Subtract Two Numbers Using Methods in Java

Learn 8 Ways to Subtract Two Numbers Using Methods in Java In this article, we…

4 months ago

10 ways to subtract two numbers in Java

10 ways to subtract two numbers in Java In this article, we will discuss the…

4 months ago

Java Code Examples – Multiply Two Numbers in 5 Easy Ways

Java Code Examples – Multiply Two Numbers in 5 Easy Ways In this article, we…

4 months ago

How to Divide two numbers in Java| 5 different ways

How to Divide two numbers in Java| 5 different ways In this article, we will…

4 months ago

This website uses cookies.