Python Program to Check Even Number

You are Here:

What are Even Numbers?

An integer (never a fraction) that can be divided exactly by 2. For example, 10 is an even number, i.e., 10 % 2 = 0.

Note: % is a Modulus (Division Remainder) operator, it finds the remainder after division of one number by another. Please check our Arithmetic Operators for more details.

Tips: It is recommended to use our online Even Numbers calculator for better understanding.

Using For Loop

In the following example, we will find all the Even Numbers between 10 and 25 using for loop.

Example

Python Compiler
start = 10; end = 25; print("Even numbers between %d and %d: " % (start, end)) for start in range(start, end): if(start % 2 == 0): print(start, end=" ")

Output

Even numbers between 10 and 25: 10 12 14 16 18 20 22 24

Using While Loop

In the following example, we will find all the Even Numbers between 10 and 25 using while loop.

Example

Python Compiler
start = 10; end = 25; print("Even numbers between %d and %d: " % (start, end)) while(start <= end): if(start % 2 == 0): print(start, end=" ") start += 1

Output

Even numbers between 10 and 25: 10 12 14 16 18 20 22 24

Even Numbers between any Given Range

In the following example, we will find all the Even numbers between any given range.

Example

Python Compiler
start = int(input("Enter a (int) starting number: ")) end = int(input("Enter an (int) ending number: ")) print("\nEven numbers between %d and %d: " % (start, end)) while(start <= end): if(start % 2 == 0): print(start, end=" ") start += 1

Output

Enter a (int) starting number: 14 Enter an (int) ending number: 20 Even numbers between 14 and 20: 14 16 18 20

Check Whether the Given Number is Even or Odd

In the following example, we will check whether the given number is an Even number or Odd number.

Example

Python Compiler
num = int(input("Enter a number: ")) if(num % 2 == 0): print("%d is an even number" % num) else: print("%d is an odd number" % num)

Output

Enter a number: 25 25 is an odd number

Reminder

Hi Developers, we almost covered 90% of String functions and Interview Question on Python with examples for quick and easy learning.

We are working to cover every Single Concept in Python.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author