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

Using function or method to Write temperature conversion : Fahrenheit into Celsius

Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…

11 months ago

Function or method:temperature conversion from Fahrenheit into Celsius – Entered by user

Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…

11 months ago

Write temperature conversion program: Fahrenheit into Celsius

Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…

11 months ago

How to write a program to convert Fahrenheit into Celsius

How to write a program to convert Fahrenheit into Celsius In this article, we will…

11 months ago

Function/method to convert Celsius into Fahrenheit -Entered by user

Function/method to convert Celsius into Fahrenheit -Entered by user In this article, we will discuss…

11 months ago

Temperature conversion: Celsius into Fahrenheit using function or method

Temperature conversion: Celsius into Fahrenheit using a function or method In this article, we will…

11 months ago

This website uses cookies.