Python program to print all even numbers in a range
In this article, we will learn to print all the even numbers in a range using the python program.
We will use for loop to do that.
Input:
Start = 4
End = 10
Output:
[4, 6, 8, 10]
Explanation
- First, we will take input from users for starting and ending numbers.
- Then we will iterate for loop from start to end+1.
- After that, we will append all the even numbers to result in a list.
- Then we print the result.
Program
1 2 3 4 5 6 7 8 9 10 11 12 13 | # take input from the user Start = int(input("Enter starting number: ")) End = int(input("Enter ending number: ")) result = [] for ele in range(Start,End+1): if ele%2==0: result.append(ele) # print result print(result) |
Output
Enter starting number: 4 Enter ending number: 10 [4, 6, 8, 10]