Hello Programmers, Welcome to my Python Programming Tutorial Channel.
In this video you will learn about how to write a python program to print all even numbers from 1 to 20
Python Scripts
========================
https://codewithtj.blogspot.com/2024/...
Python Functions Solved
========================
https://codewithtj.blogspot.com/2023/...
Python Programs Solved
========================
https://codewithtj.blogspot.com/2023/...
Python 3 Tutorial - Code
=============================
"""
write a python program to print all even numbers from 1 to 20
"""
start = 1
end = 20
print(f"Even Numbers Between {start} and {end} is ...")
for index in range(start, end+1):
if index % 2 == 0:
print(index)
Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners