Python program to print even numbers between 1 to 100.
- Rajesh Singh
- Mar 29, 2020
- 1 min read
Updated: Jul 17, 2021
Python program to print even numbers between 1 to 100.

Program:
for num in range(1,100): if num%2==0: print (num)
Output:
2 4 6 8 10
;
;
;
;
98
Python program to print even numbers between 1 to 100 Video:
Comments