General Python

Python Program To Middle Among Three Numbers3 min read

Python Program To Find Middle Among Three Numbers

In this tutorial, we will discuss the Python program to find middle among three numbers.

This post explains how to find middle number among three numbers using if statements with the operator in Python.




There are many ways to find the middle number of three numbers. but here, we mainly focus on using if statements or if else-if statements and with or without the and operator.

Here, we provide four programs to find the middle number among the three numbers.

first two programs guide to find the middle number among three integer numbers.

Second two programs guide to find the middle number among three floating point numbers in different two methods.

Find the middle number of three integer numbers

program 1

Find the middle number using if elif statements without and operator

When the above code is executed, it produces the following results

Program 2

Find the middle number using if statements with and operator

When the above code is executed, it produces the following results

Find the middle number of three float numbers

program 3

Find the middle number using if elif statements without and operator

When the above code is executed, it produces the following results

Program 4

Find the middle number using if statements with and operator

When the above code is executed, it produces the following results

Leave a Comment