Python Program to Print First 10 Even Natural Numbers

Write a Python program to print first 10 even natural numbers using for loop.

print("====The First 10 Even Natural Numbers====")

for i in range(1, 11):
    print(2 * i)
Python Program to Print First 10 Even Natural Numbers

This Python program displays the first 10 even natural numbers using a while loop.

print("====The First 10 Even Natural Numbers====")

i = 1
while(i <= 10):
    print(2 * i)
    i = i + 1
====The First 10 Even Natural Numbers====
2
4
6
8
10
12
14
16
18
20

About Suresh

Suresh is the founder of TutorialGateway and a freelance software developer. He specialized in Designing and Developing Windows and Web applications. The experience he gained in Programming and BI integration, and reporting tools translates into this blog. You can find him on Facebook or Twitter.