Print Table of a Given Number in Python - In Hindi

preview_player
Показать описание
Print Table of a Given Number in Python - In Hindi - Tutorial#38

In this video, I have explained a program to print the table of a given number. Printing table of a given number is a very important program and is used to practice the looping concept. Table of a given number program can be made using either while loop or using for loop. I have explained this program using while and for both loops.

Dear Friends, please help this channel to grow. I will keep uploading quality python tutorial for you.

Tags Used:

python program to print table of a given number
table of a given number
for loop in python
for examples in python
python
python programming
python for loop basics
python for loop tutorial
python for loop in hindi
python for loop explained
python for loop examples
python for loop and while loop
for loop in python in hindi
multiplication table

#codeitup
#forloop
#pythonloop
Рекомендации по теме
Комментарии
Автор

Sir agar such bolun really to aapki wajah say mera programs mein shouq aaya you are really good teacher to clear my concepts best of luck sir god bless you❤

afnanahmed-semn
Автор

Sir I took your program to next level more advanced.
x=int(input(">>enter number:"))
b=int(input(">>upto:"))
n=b+1
for y in range (1, n):
print(">>", x, "x", y, "=", x*y)

leon.s.kennedy
Автор

Better than all and your python teaching level is beyond everyone thinking

dhamaka
Автор

Sir thanx you are really doing great work.. my son was not interested in programming but after watching your video he is diverts his interest towards programming...

chandrahasmhatre
Автор

Sir you are really great before watching your videos i was thinking to change my subject but your videos make Python clear to me and to learn it properly 🙏

yashparashar
Автор

i am watching your videos when you had only 2k subscribers. your videos are really amazing and the way of teaching is very best. thanks a lot for making coding so easy . thank you so much

टंकारशर्मा
Автор

Amazing sir for coding you are perfect teacher

Xx_mr_shantanu_xx
Автор

Sir you have made our each and every concept crystal clear !!!
Thank you so much❤❤

abductingfear
Автор

Thank you so much sir.. your teaching style is Awesome

AjazAhmad-hdee
Автор

Probably one of the easiest program in class 11.
Sir you are great especially your playlist

mr.boaster
Автор

Thank you so much sir.. best and unique style of teaching code

gopishahane
Автор

Sir u are too good😍.. Thank you so much

AnjaliSingh-rmgi
Автор

Sir isse bhi kr skte hai kya? isse se bhi same output aa rha hai
n=int(input("Enter No.="));
for n in range (n, n*11, +n):
print(n)

hardikbhati
Автор

n = int(input("enter your number here: "))
for n in range(n, (n*11), n):
print(n)

aayushisinghbais
Автор

Sir, you are awesome... Providing such a hard stuff in a simple way which is benefitted to students like me.... Keep it up and make full series of Python Tutorial....

sandipkankate
Автор

hi sir, do we have object oriented programming videos

sudhansumtripathy
Автор

You are awesome, codeitup is awesome, please open an institute for us sir.

arkyaacharya
Автор

ANOTHER METHOD :
n=int (input())

for i in range(n, n*10+1, n):
print(i)

subhamsingh
Автор

Sir, how much time will it take to learn till string manipulation from starting of python

naveennair
Автор

sir pls provide us note also in a sequence manner so that our only intension to do practice only

HAPPYKUMAR-jdbc