Python program to print first 10 even numbers using while loop | Code
Use a while loop with if statement condition i % 2 == 0 then only print the first 10 even numbers in Python. Example print… Read More »Python program to print first 10 even numbers using while loop | Code