Pricing
Learn
Code
Deploy
More
DIVISIBILITY
1621
1 year ago by
shaurya
Using a while loop to print the first 10 even numbers
count = 0
even_number = 2
while count < 10:
print(even_number)
even_number += 2
count += 1