In this tutorial, we will discuss the concept of the Python program: find smallest of three numbers using the function
In this post, we will learn how to find the smallest number of three numbers using a user-defined function in the Python programming language
In my previous post, I have explained the various approaches to find the smallest number of among three numbers in Python language
However, in this program, we embed the logic of this program in the function.
Here, I have explained how to find the smallest number from the given three numbers and how to embed this logic in the function.
Program 1
This program allows the user to enter three numbers and compare to select the smallest number using if-elif statements
num1=int(input("Enter the first number: ")) num2=int(input("Enter the second number: ")) num3=int(input("Enter the third number: ")) def find_Smallest(): #function definition if(num1<=num2) and (num1<=num3): Smallest=num1 elif(num2<=num1) and (num2<=num3): Smallest=num2 else: Smallest=num3 print("Smallest number is", Smallest) find_Smallest(); #functio call
When the above code is executed, it produces the following results
Enter the first number: 43 Enter the second number: 90 Enter the third number: 56 Smallest number is 43
Program 2
This program allows the user to enter three numbers and compare to select the smallest number using Nested if statements
num1=int(input("Enter the first number: ")) num2=int(input("Enter the second number: ")) num3=int(input("Enter the third number: ")) def find_Smallest(): #function definition if(num1<=num2): if(num1<=num3): Smallest=num1 else: Smallest=num3 else: if (num2<=num3): Smallest=num2 else: Smallest=num3 #display the smallest number print("Smallest number is", Smallest) find_Smallest(); #functio call
When the above code is executed, it produces the following results
Enter the first number: 89 Enter the second number: 12 Enter the third number: 56 Smallest number is 12
Smiler post
C++ code to find the smallest of three numbers using the function
C program to find the smallest among three numbers using the function
Python code to find the smallest of three numbers using the method
Java code to find the smallest of three numbers using the method
C program to find the largest among three numbers using function
Python code to find the largest of three numbers using the function
C++ code to find the largest of three numbers using the function
Java code to find the largest of three numbers
C code to find the largest of three numbers
C++ code to find the largest of three numbers
Python code to find the largest of three numbers
Java program to find the middle of three number using Method
C code to find the middle of three number using the function
C++ code to find the middle of three number using the function
Python code to find the middle of three number using the function
Java code to find middle of three numbers
C code to find middle of three numbers
C++ code to find middle of three numbers
Python code to find middle of three numbers
Java code to find largest of three numbers in an array
Java code to find smallest of three numbers in an array
C code to find the middle of three number using the function
C++ code to find the middle of three number using the function
Suggested for you
Nested if statement in C++ language
The operator in Python language
If statement in Python language
Data types and Variable in Python
Datatype and variables in Java programming language
If statements in Java language
Nested if statements in the Java language
Suggested for you
If statements in Python language
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…