How to Check If a Number is Even or Odd in Python

In this tutorial, we will create a "How to Check If a Number is Even or Odd in Python". We will cover the creation of a program that can check if a number is even or odd. The main goal here is to understand the concept of checking the number whether it is even or odd. I will provide a sample program to demonstrate the actual coding of this tutorial.

This topic is very easy to understand; just follow the instructions I provide, and you can also do it yourself with ease. The program I will show you is how to check the number if it is a even or odd. I will do my best to provide you with the easiest method of creating this program, called "Check If a Number is Even or Odd ". So, let's start with the coding.

Getting Started:

First you will have to download & install the Python IDLE's, here's the link for the Integrated Development And Learning Environment for Python https://www.python.org/downloads/.

Creating Main Function

This is the main function of the application. The following code will display a simple GUI in terminal console of checking if a number is even or odd. To do this, simply copy and paste these blocks of code into the IDLE text editor.
  1. while True:
  2.     ret=False
  3.    
  4.     print("\n\n================= Check If a Number is Even or Odd =================\n\n")
  5.     num = int(input("Enter a number: "))
  6.     if (num % 2) == 0:
  7.        print("{0} is Even".format(num))
  8.     else:
  9.        print("{0} is Odd".format(num))
  10.  
  11.  
  12.    
  13.     user_input=input("\n\nTry again? (Yes/No): ")
  14.     print("\n\n")
  15.     if user_input.lower()=='no':
  16.         print("Exit program.")
  17.         break
  18.  
  19.     elif user_input.lower()=='yes':
  20.         ret=True
  21.  
  22.     else:
  23.         print("Wrong input.")
  24.         ret=True
  25.  
  26.  
  27.     if ret:
  28.         continue

In the provided code, the first step is to use a while loop to enclose all the code to ensure the continuity of the program. Next, we set variables for the user input and for cheking. Lastly, we use a conditional statement with argument to check the number.

Output:

The How to Check If a Number is Even or Odd in Python source code that I provide can be download below. Please kindly click the download button.

There you have it we successfully created How to Check If a Number is Even or Odd in Python. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

More Tutorials for Python Language

Python Tutorials

Add new comment