write a python program to print first 10 natural numbers

Опубликовано: 05 Июль 2024
на канале: Code With TJ
336
3

Hello Programmers, Welcome to my channel.

In this video you will learn about how to write a python program to print first 10 natural numbers

Python Scripts
========================
https://codewithtj.blogspot.com/2024/...

Python Functions Solved
========================
https://codewithtj.blogspot.com/2023/...

Python Programs Solved
========================
https://codewithtj.blogspot.com/2023/...


Code
=============================
"""
write a python program to print first 10 natural numbers
"""

print("first 10 natural numbers are ...")

for index in range(1, 11):
print(index, end=", ")



Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners