Write a program to print first 10 even numbers in python using while loop

Use a while loop with if statement condition i % 2 == 0 then only print the first 10 even numbers in Python.

Simple example code print even numbers of user input value using a while loop in Python. You can use list objects to store value, here we are printing the value using the end keyword.

x = int[input["Enter a number: "]]
i = 1

while i 

Chủ Đề