write a Python program to display even numbers from 100-50
Answers
Explanation:
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.
# Python program to print Even Numbers in given range
start, end = 4, 19
# iterating each number in list
for num in range(start, end + 1):
# checking condition
if num % 2 == 0:
print(num, end = " ")
Output:
4 6 8 10 12 14 16 18
Example #2: Taking range limit from user input
# 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
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.
Recommended Posts:
Python program to print all negative numbers in a range
Python program to print all odd numbers in a range
Python program to print all positive numbers in a range
C++ program to print all Even and Odd numbers from 1 to N
Python program to print even numbers in a list
Python - Test for all Even elements in the List for the given Range
Sum of even numbers at even position
Print all numbers in given range having digits in strictly increasing order
Count Odd and Even numbers in a range from L to R
Python program to print even length words in a string
Python Program to Print Largest Even and Largest Odd Number in a List
Python program to print all Prime numbers in an Interval
Python program to print all Strong numbers in given list
Python Program for Efficient program to print all prime factors of a given number
Python program to count Even and Odd numbers in a List
Python Program to find Sum of Negative, Positive Even and Positive Odd numbers in a List
Program to print Sum of even and odd elements in an array
Answer:
for n in range(100,50,-1):
if n%2==0:
print(n,'is even number.')
==================================================================
Thankyou : )