⌘K
How to Run Python Scripts
#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)Write a for loop that prints all even numbers from 0 to 10.
# Write your solution here
for i in range(?):
if ?:
print(i)