PyTutorial

Loop the Loop

#Task

Write a for loop that prints all even numbers from 0 to 10.

python
# Write your solution here
for i in range(?):
    if ?:
        print(i)