Hello Programmers, Welcome to my channel.
In this video you will learn about how to Write A Python Program To Print Sum Of Odd Numbers Between 1 And 15
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 Sum Of Odd Numbers Between 1 And 15
"""
start = 1
end = 15
total = 0
for number in range(start+1, end):
if number % 2 == 1:
total += number
print(f"Sum Of Odd Numbers Between {start} And {end} is : {total}")
Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners