Python program to print all even numbers in a range
Given starting and end points, write a Python program to print all even numbers in that given range. Example:
Input: start = 4, end = 15 Output: 4, 6, 8, 10, 12, 14 Input: start = 8, end = 11 Output: 8, 10
Example #1: Print all even numbers from given list using for loop Define start and end limit of range. Iterate from start till the range in the list using for loop and check if num % 2 == 0. If the condition satisfies, then only print the number.
Python3
for num in range ( 4 , 15 , 2 ): #here inside range function first no dentoes starting, second denotes end and third denotes the interval print (num) |
Output:
4 6 8 10 12 14
Example #2: Taking range limit from user input
Python3
# Python program to print Even Numbers in given range start = int ( input ( "Enter the start of range: " )) end = int ( input ( "Enter the end of range: " )) # iterating each number in list for num in range (start, end + 1 ): # checking condition if num % 2 = = 0 : print (num, end = " " ) |
Output:
Enter the start of range: 4 Enter the end of range: 10 4 6 8 10