Day 4 of #100DaysOfCode. Today, in this video 19, I learned about break and continue statements in Python. The break statement allows me to terminate a loop prematurely, while the continue statement helps me skip the remaining part of the loop and move on to the next iteration. Both statements provide more control over loop execution and flow. Thank You Harry Bhaiya.
can any one please sloved my misunderstanding for i in range(111): print("5 X", i+1,"=",(i+1)*5) if (i == 10): break print("this is 5 table") this table gone 11 for i in range(1,111): print("5 X", i,"=",i*5) if (i == 10): break print("this is 5 table") And this gone on 10 can any one please sloved my misunderstanding
@@MuhammadHashirAshfaq In the first loop, you are confused because you are using `i+1` when printing the table of 5. So, when i == 10, the table still prints till 11 because 10 + 1 = 11. And the second one isn't printing till 11 since its not using `i + 1`. Hope it clears your misunderstanding
@@MuhammadHashirAshfaq the above reply corrected your misunderstanding, I will solve your misunderstanding without changing your i+1 thing, you can simply put... if (i == 10): break right after the for i in range(111) it will break the loop at i ==10 without printing next iterations
Thanks Dear Harry! You are amazing nd content you are publishing for free is beyond expectations. I am currently doing a job, + doing BBA; 07 Semester (which is like compulsory for my current job promotion etc.,) I can not manage my home expenses with my current job. Therefore I have started learning Python, So I can earn some extra income. So far I had learned all python basic from another UA-cam channel and but I was not truly satisfied with it. So, I started to learn with you today I am on Day 19. Besides, I have good grip on Python Basic tasks. I am loving your content, & adding extra values in my Basic. " Thanks again"
Correction in 2:45 for i in range(10): print("5 x",i+1,"=",5*(i+1)) output: 5 x 1 = 5 5 x 2 = 10 5 x 3 = 15 5 x 4 = 20 5 x 5 = 25 5 x 6 = 30 5 x 7 = 35 5 x 8 = 40 5 x 9 = 45 5 x 10 = 50 or second method: for i in range(1,11): print("5 x",i,"=",5*i) output: 5 x 1 = 5 5 x 2 = 10 5 x 3 = 15 5 x 4 = 20 5 x 5 = 25 5 x 6 = 30 5 x 7 = 35 5 x 8 = 40 5 x 9 = 45 5 x 10 = 50
@@rafaybaig4281Bhai agar jyada genius bn rha h toh ye dekh le harry ne jyada range isi liye liya h taaki break statement lagake loop ko rok ske jaise hi 5×10=50 ho genius h thik but jo baaki h unhe smjhne do yaha p harry bhai ne break statement lagana sikhaya h
total = 0 a = int(input("enter number : ")) for i in range(10): if i == 10: break x = a * (i + 1) print(a,"×", i + 1, "=", x) total += x print("Sum of multiples:", total)
Actually, I completed the 15 hour python cource just 3 days before Harry Bhai started #100daysofcode I am now just watching those topics which were uncovered or (updated python ) Thanks again for this cource!!! 😁
@@mariamhasan3733 it took me about 1 month Because I was told to watch videos only 1 hour per day... And I was making notes with that too...ik that notes were given but still I made
8:12 My Implementation of Do While loop😉😜 .. #Emulating Do While Loop in Python while True: number = int(input("Enter a positive number: ")) print(number) if number ==0: print("Zero ka kya karu?!!!") elif "69" in str(number): print("Bahut Tez Ho rhE Ho!!") elif not number > 0: print("Andha Hai kya LauDe!! Positive daal") break Hope that Made you Smile:)😁🤪
main bhi aisa hi masti karta tha...semester project ka ui design kar rha tha...ek case me " tu gand mara" likh rakkha tha...badd me change karna vul gya..aur wahi version submit kar dia...🙂🙂
can any one please sloved my misunderstanding for i in range(111): print("5 X", i+1,"=",(i+1)*5) if (i == 10): break print("this is 5 table") this table gone 11 for i in range(1,111): print("5 X", i,"=",i*5) if (i == 10): break print("this is 5 table") And this gone on 10 can any one please sloved my misunderstanding
Yaar matlab kuchh bhi saare videos 2x pe bhi dekhoge to bhi 100 mins se jyada lagega and you are saying ki you just watched all the videos in just 60 mins.
@@nitish6239 I can watch this in one hour, the concepts are very simple for someone who knows 2-3 programming languages so you can skip parts of the video
are you using replit?i want to ask that in the start of this challenge till day 11 the video tutorial was showing on replit for easy working side by side,which was very useful.But after 11th class their was no video is linked or it is not showing to me which become hectic for me to first watch it from yt then implement it in replit.So is their is any one who is facing the same problem of not getting video tutorial????
00:03 How to use 'Break Statements' and 'Continue Statements' in Python loops 01:28 Replit navigation is smooth 03:03 'Break Statements' will say 'Just exit this loop' 04:40 Break and Continue Statements in Loops 06:14 The 'Continue' statement is used to skip iterations in a loop. 07:36 Emulating 'Do While Loop' using an Infinite While Loop 09:02 The code emulates a 'Do While Loop' 10:38 Understanding 'Do While Loop' and its implementation in Python.
00:03 How to use 'Break Statements' and 'Continue Statements' in Python loops 01:28 Replit navigation is smooth 03:03 'Break Statements' will say 'Just exit this loop' 04:40 Break and Continue Statements in Loops 06:14 The 'Continue' statement is used to skip iterations in a loop. 07:36 Emulating 'Do While Loop' using an Infinite While Loop 09:02 The code emulates a 'Do While Loop' 10:38 Understanding 'Do While Loop' and its implementation in Python. Crafted by Merlin AI.
Harry Sir, I'm right now in class 9th and i have extreme interest in computers and i want to work for Google or Microsoft in the future, so i am learning web dev and python since class 8. I've made a fully functional chess ai in python on my own and a portfolio website. My question is, Is this the right time to do all this?
Yes this is right you can learn programming at this time as it will benifit your future. Getting practical knowledge is much better than theory and i also do such programming and i am also in 9th so yeah, i guess it is the right age to do so...
i am in class 8th and i started it in class 7th from @codewithharry and i think its the best time to start coding because now is the time when we can understand much of the things
# Initialize a variable i = 1 # Execute the loop at least once while True: print("5 x",i+1,"=",5*(i+1)) i = i+1 if (i == 10): break i tried to write this program in dowhileloop
Sir, Thanks a lot for explaining all imp units of Python on next level. I'm requesting you, please 🙏 provide one zip file containing notes and programs. Waiting.....
break ststement says: "iss loop ko chhodkr nikl jao."....this line touches many of our hearts; harry se sikhe koi"ganit sathe gammat" ye hamari gujarati kahavat hai...
can any one please sloved my misunderstanding for i in range(111): print("5 X", i+1,"=",(i+1)*5) if (i == 10): break print("this is 5 table") this table gone 11 for i in range(1,111): print("5 X", i,"=",i*5) if (i == 10): break print("this is 5 table") And this gone on 10 can any one please sloved my misunderstanding
for i in range(10): print("5 X",i+1,"=",5*(i+1)) if(i==5): print("skip") break print(" ") print(" ") print(" ") for i in range(10): if(i==7): print("skip") continue print("5 X",i+1,"=",5*(i+1)) 🎉🎉🎉🎉🎉🎉
My attempt at emulating a do while loop while(bool("True")): # contents of loop if(condition==False): break while loop will run atleast once. I cracked this idea from the last video where you showed how c++ has do while loop at the END of the contents of the loop. Thank you for this amazing exercise it feels great after cracking a problem down EDIT: after watching the solution I am glad the logic somewhat matched! (the bool("True") was unnecessary lol)
Sir 1 video app development with python par bhi bana de . Mere jese Bigners k lye 1 boost hoga jo wo ap se seekh rahay he . Or bohot se doubts bhi clear ho jaenge. Thanks for your videos 👍
Break statement be like - chal phli fursat me nikal 😂😂ye apun ka ilaka hai ab😂😂 By the way sir you are awesome ☺️😎😎 apki wajah se hi computer science journey achchi lag rhi h
3:07 Right code = user_input = int(input("Enter a number for Table :")) print (f"This is the Multiplication table of {user_input}.") for k in range (1,13): print (f"{user_input} X {k} = {user_input * k}") if k == 10: break print ("Now loop is breaked.")
Best python course ever on UA-cam
nahi bhai
yes
haaa
\
H
🤔🤔🤔@@ReyanshParashar
#5 table
for i in range(1,11):
print("5 *", i, "=", 5*(i))
for i in range(1,200):
if i>=50 and i
error
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
=== Code Execution Successful ===
Uncle else kahan hai
3:18 , break statement say leave this loop , i done this sir 😊😊😊😊😊😊😊😊
i=int(input("enter your dream package"))
while(i
Error bro 😯
Use # in last command 😅
Day 4 of #100DaysOfCode. Today, in this video 19, I learned about break and continue statements in Python. The break statement allows me to terminate a loop prematurely, while the continue statement helps me skip the remaining part of the loop and move on to the next iteration. Both statements provide more control over loop execution and flow.
Thank You Harry Bhaiya.
can any one please sloved my misunderstanding
for i in range(111):
print("5 X", i+1,"=",(i+1)*5)
if (i == 10):
break
print("this is 5 table")
this table gone 11
for i in range(1,111):
print("5 X", i,"=",i*5)
if (i == 10):
break
print("this is 5 table")
And this gone on 10
can any one please sloved my misunderstanding
@@MuhammadHashirAshfaq In the first loop, you are confused because you are using `i+1` when printing the table of 5. So, when i == 10, the table still prints till 11 because 10 + 1 = 11. And the second one isn't printing till 11 since its not using `i + 1`. Hope it clears your misunderstanding
@@MuhammadHashirAshfaq the above reply corrected your misunderstanding, I will solve your misunderstanding without changing your i+1 thing, you can simply put...
if (i == 10):
break
right after the for i in range(111)
it will break the loop at i ==10 without printing next iterations
@@MuhammadHashirAshfaq in first code its i + 1 but in second one its just i . I hope you understand
your notes and videos are so amazing for a beginnner learing python❤❤❤❤❤❤❤❤❤
May I know from whr did you get his notes??
THANKS SIR G AP IS COURSE KA LIYA BOHAT MAHANAT KR RAHA HA OR WO B SIRF HAMARA LIYA
AP KA BOHAT THANKS SIR R ♥♥♥
LOVE SKILLS + LEARN SKILLS = EARN MONEY SKILLS = LOVE YOU HARRY SIR 😃😃😃❤️❤️❤️❤️❤️👍👍👍👍👍👍
Hello guys I am happy to introducing new Rapper in the home. Have fun at 11:45
You didnot Choose Coding, Coding Choose YOu bro. LOve from Nepal❤
Love from nepal 💜
I not think coding choose his
This is his hard work
@@ApniGardening7 Bro listen, I want told him in the context of he is supertalented in the area of coding .
Love from Bhairava
I think you should take English class before Python. @@ApniGardening7
This course is awesome 🔥🔥
Thanks Dear Harry!
You are amazing nd content you are publishing for free is beyond expectations. I am currently doing a job, + doing BBA; 07 Semester (which is like compulsory for my current job promotion etc.,)
I can not manage my home expenses with my current job. Therefore I have started learning Python, So I can earn some extra income.
So far I had learned all python basic from another UA-cam channel and but I was not truly satisfied with it.
So, I started to learn with you today I am on Day 19. Besides, I have good grip on Python Basic tasks. I am loving your content, & adding extra values in my Basic.
" Thanks again"
motha
Sir aapka explanation mujhe easy me samjh me aa jata hai so tnk u sir for giving knowledge
Correction in 2:45
for i in range(10):
print("5 x",i+1,"=",5*(i+1))
output:
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
5 x 4 = 20
5 x 5 = 25
5 x 6 = 30
5 x 7 = 35
5 x 8 = 40
5 x 9 = 45
5 x 10 = 50
or second method:
for i in range(1,11):
print("5 x",i,"=",5*i)
output:
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
5 x 4 = 20
5 x 5 = 25
5 x 6 = 30
5 x 7 = 35
5 x 8 = 40
5 x 9 = 45
5 x 10 = 50
First watch the full video
@@DailyMind96 already dekh li he bro, lekin me bohot genius ho pehle hi issues figure out kar leta ho
@@rafaybaig4281Bhai agar jyada genius bn rha h toh ye dekh le harry ne jyada range isi liye liya h taaki break statement lagake loop ko rok ske jaise hi 5×10=50 ho genius h thik but jo baaki h unhe smjhne do yaha p harry bhai ne break statement lagana sikhaya h
total = 0
a = int(input("enter number : "))
for i in range(10):
if i == 10:
break
x = a * (i + 1)
print(a,"×", i + 1, "=", x)
total += x
print("Sum of multiples:", total)
Actually, I completed the 15 hour python cource just 3 days before Harry Bhai started #100daysofcode
I am now just watching those topics which were uncovered or (updated python )
Thanks again for this cource!!! 😁
It's a fake reality
How long did it take you to complete the video?
@@mariamhasan3733 it took me about 1 month
Because I was told to watch videos only 1 hour per day...
And I was making notes with that too...ik that notes were given but still I made
@@FoxMC07 Can you please share your notes
@@shubhamkumarvishwakarma9949 I can't but you can download Harry's notes in description.....sorry 😔
Love from Pakistan sir.... Big fan💜💖💖
#19 Thanks for this course sir 🙏🙏
Har Video ke starting me jab aap smile krte ho... goosebumps❤️❤️❤️❣️❣️ Love from Ahemdabad
kon kon video dekh kar confident feel krta hai???????🤘🤘🤘🤘🤘🤘
Ma
Me also
Yaaa
Me
1 unavailable video is hidden show ker raha hai 20th video kaise daikho
simple table of 5 using for loop:
for table in range(1,15):
print("5 *",table, "=", 5*table)
if(table==10):
break
Harry bhai add some coding exercises at the end of each video . btw amazing series!!!
8:12
My Implementation of Do While loop😉😜 ..
#Emulating Do While Loop in Python
while True:
number = int(input("Enter a positive number: "))
print(number)
if number ==0:
print("Zero ka kya karu?!!!")
elif "69" in str(number):
print("Bahut Tez Ho rhE Ho!!")
elif not number > 0:
print("Andha Hai kya LauDe!! Positive daal")
break
Hope that Made you Smile:)😁🤪
main bhi aisa hi masti karta tha...semester project ka ui design kar rha tha...ek case me " tu gand mara" likh rakkha tha...badd me change karna vul gya..aur wahi version submit kar dia...🙂🙂
@@rohitpaul2750 Rest In Peace bro..
can any one please sloved my misunderstanding
for i in range(111):
print("5 X", i+1,"=",(i+1)*5)
if (i == 10):
break
print("this is 5 table")
this table gone 11
for i in range(1,111):
print("5 X", i,"=",i*5)
if (i == 10):
break
print("this is 5 table")
And this gone on 10
can any one please sloved my misunderstanding
@@MuhammadHashirAshfaq in the 1st code print statement you written i+1 and the nxt statement you written just i that's what make difference bro
Best one 😂😂😂😂
I was not aware about this When I cam to know this series is live I binge watched the whole playlist till now in an hour
Yaar matlab kuchh bhi
saare videos 2x pe bhi dekhoge to bhi 100 mins se jyada lagega
and you are saying ki you just watched all the videos in just 60 mins.
@@nitish6239 I can watch this in one hour, the concepts are very simple for someone who knows 2-3 programming languages so you can skip parts of the video
Harry bhaiya mast playlists bnate h
Thank you sir , you are working hard for us❤️❤️🥰
Yes, thanks a billion to Harry
bro project ideas ha kuch jitna kya ha hum ne
19 days tak ka
Yes
@@manvichauhan22 bro fer bta do na muja kuch idea nhi ha tum bta do
Aap bht acche se btate h bhai
So apko dil se thanks salute bhai
Saw this playlist on day 9, & covered it in fast pace, now i always wait fr 5 pm in the evening. Thanks Harry bhai.
are you using replit?i want to ask that in the start of this challenge till day 11 the video tutorial was showing on replit for easy working side by side,which was very useful.But after 11th class their was no video is linked or it is not showing to me which become hectic for me to first watch it from yt then implement it in replit.So is their is any one who is facing the same problem of not getting video tutorial????
@@steps.ofLife bro you can access the playlist 👍 That's you happy 🤓
Fr means for real not for. please correct it 😶😶😶
00:03 How to use 'Break Statements' and 'Continue Statements' in Python loops
01:28 Replit navigation is smooth
03:03 'Break Statements' will say 'Just exit this loop'
04:40 Break and Continue Statements in Loops
06:14 The 'Continue' statement is used to skip iterations in a loop.
07:36 Emulating 'Do While Loop' using an Infinite While Loop
09:02 The code emulates a 'Do While Loop'
10:38 Understanding 'Do While Loop' and its implementation in Python.
Harry you are brilliant in coding
thank you very much sir.........
Nicely explained!
00:03 How to use 'Break Statements' and 'Continue Statements' in Python loops
01:28 Replit navigation is smooth
03:03 'Break Statements' will say 'Just exit this loop'
04:40 Break and Continue Statements in Loops
06:14 The 'Continue' statement is used to skip iterations in a loop.
07:36 Emulating 'Do While Loop' using an Infinite While Loop
09:02 The code emulates a 'Do While Loop'
10:38 Understanding 'Do While Loop' and its implementation in Python.
Crafted by Merlin AI.
Main aapke purane video dekh raha hoon Python ke ismein aur usmein kya difference hai please tell me sir
Yee brand new course he , some other topics are covered in new course and some new projects
@@badalsahoo3902 Ok bro thanks 🙂🙂
for i in range(10):
if (i == 8):
break
print ("10 X ",i+1,"=",10*(i+1))
print ("loop ko chor kr nekal jao")
#break terminate entire loop
Loved the fact that it's for free in youtube. Just need to have data package. Thanks Bhai... You're saving Education itself.
tho bhai data bi free karde apke liye??
kaise kaise log hai ..if u want to appreciate do it neatly
@@JENNYOPJOD tu krdo bhai tera g*ande de ke. Hum se to itna he hosak ta he bhai...
@CodeWithHarry you are class in your class!!!👏👏👏
#HarryBhaiya we need some practice problems also at the end of each video...........as you did in your 15 hours one shot video
point hai bro
for i in range(10):
if (i == 8):
print ("iteraltion skip kr do")
continue
print ("10 X ",i,"=",10*i)
#continue skip specific iteration
Also we can write this way:
for j in range(1,14):
if j>10:
break
print("5 X",j,"=",5*j)
Thanks
Paid Courses ki Wattt laga di Harry vai...😄 Love You Harry vai,🥰 Bcz of only you, I am called the best programmer in my Clg...
Harry Sir, I'm right now in class 9th and i have extreme interest in computers and i want to work for Google or Microsoft in the future, so i am learning web dev and python since class 8. I've made a fully functional chess ai in python on my own and a portfolio website. My question is, Is this the right time to do all this?
Yes this is right you can learn programming at this time as it will benifit your future. Getting practical knowledge is much better than theory and i also do such programming and i am also in 9th so yeah, i guess it is the right age to do so...
i am in class 8th and i started it in class 7th from @codewithharry and i think its the best time to start coding because now is the time when we can understand much of the things
@@atharva_patel i started from class 3rd bro... We are different. 💀
I also started in 7th grade and now I am in 9th grade It's very beneficial for us. I have till now learned java python HTML CSS and js from harry bhai
Me who in final sem of engineering and learning my first language💀💀
# Initialize a variable
i = 1
# Execute the loop at least once
while True:
print("5 x",i+1,"=",5*(i+1))
i = i+1
if (i == 10):
break
i tried to write this program in dowhileloop
Sir, Thanks a lot for explaining all imp units of Python on next level. I'm requesting you, please 🙏 provide one zip file containing notes and programs. Waiting.....
see at 12:05
@@devendrakalwani but can I download that
Day 19 done ✅
@codewithharry please take patterns as deep as possible in this course. I am sure you will see my comment. Thanks in advance 🙏
Pranam bhrata 🙏 apka bahutt baht dhanyawad ❤️😌🙏😇
break statement kahy gah : jaldi hato waha sy📢
Love From Nepal Harry Bhai. I want to tell You something harry bhai, I love you❣
Hi
break ststement says: "iss loop ko chhodkr nikl jao."....this line touches many of our hearts; harry se sikhe koi"ganit sathe gammat" ye hamari gujarati kahavat hai...
Code Backup Repository: github.com/CodeWithHarry/100-days-of-code-youtube
can any one please sloved my misunderstanding
for i in range(111):
print("5 X", i+1,"=",(i+1)*5)
if (i == 10):
break
print("this is 5 table")
this table gone 11
for i in range(1,111):
print("5 X", i,"=",i*5)
if (i == 10):
break
print("this is 5 table")
And this gone on 10
can any one please sloved my misunderstanding
Sir pls pin it
harry bhai apna comment pin krlo wrna gum ho jye ga
@@MuhammadHashirAshfaqAs you are using i+1 that's why when I gets to 10 it prints 10+1=11. That's why it happened. In both cases it break on 10
Day 19
Course is amazing
Aap is video ko 1x me hi dkh rhe h 😂😂
Any class 12th Cs student here😅
Bc 12th me bhi aata hai kya esa 😅😅
Class 8
Cilass 5th 😎
😂🤡 cilass , glass bolde bhai @@videodiariesytchannel
Same😂
for i in range(10):
print("5 X",i+1,"=",5*(i+1))
if(i==5):
print("skip")
break
print(" ")
print(" ")
print(" ")
for i in range(10):
if(i==7):
print("skip")
continue
print("5 X",i+1,"=",5*(i+1))
🎉🎉🎉🎉🎉🎉
day #8 of asking to make a discord server
Assalam.O.Alaikum!!
Harry Bhai you are bestest Teacher💞💞💞...
Did anyone notice the topic of day 20 and 21 at 8:10
thank you bro
nice observation
Bilkul Maza Arraha hai harry bhai
nice harry bhai Are you great teacher😍
My attempt at emulating a do while loop
while(bool("True")):
# contents of loop
if(condition==False):
break
while loop will run atleast once. I cracked this idea from the last video where you showed how c++ has do while loop at the END of the contents of the loop. Thank you for this amazing exercise it feels great after cracking a problem down
EDIT: after watching the solution I am glad the logic somewhat matched! (the bool("True") was unnecessary lol)
Amazing and interesting
maza aaraha hai!
for i in range(1, 200):
print(i * 5)
if i * 5 >= 50:
break
print('limit reached')
Thank you sir. so much respect for you from Pakistan.
Khuda ka bheja Hua Nayab Hira..Well done Harry Bhai...God Bless you for all the good work you are doing..Kudus...
Thank you so much 🙏
break statmant
#simple table of 10 usage for loop:
for table in range(1,15):
print ("10*",table,"=",10*table)
if(table==10)
break
Thanku code with harry for provideing free python course
Day 19 Present Sir .
Love and respect from Pakistan
And I will see you next time.
I love this sentence when harry bhai says it.
for i in range(11):
print("5 X", i+1, "=", 5 * (i + 1))
if(i == 10):
break
print("Loop ko chodkar nikal gaya")
thank you sir for helping me out of confusion
Sir 1 video app development with python par bhi bana de . Mere jese Bigners k lye 1 boost hoga jo wo ap se seekh rahay he . Or bohot se doubts bhi clear ho jaenge. Thanks for your videos 👍
Aap ka jitna bhi thanks bolu km hai BHai❤❤🤟
Present Harry bhaiya 🙂
Break statement ----->Just exit the loop
Continue statement -----> Just exit the Iteration
Harry bhai 11:42 pe esa laga video ko 2x pe play kar diya 😂😂😂
best python course ever in histroy
Amazing coures❤
Thank you Harry bhai ❤
Present sir, Day 19, Maja aa raha hai
Day 19 done, thanks
Present brother, Love ❤️ from Bangladesh 🇧🇩
Break statement kahega is loop ko chhodkar nikal jao 🤣🤣🤣 ok sir I love it nikal jaoo. 🤘👍😜
Harry your my inspiration ☺️ love you bro
Present Sir
Dil me reh jaati he na baat to axcha nhi lagta in table of 5😂 really got me funny laugh 🤣
Present sir 🤚
♥♥
Thank you bhai for this helpful course
break statement will speak :- is loop ko chor kr nikal jao
Mast teacher ever❤️👍
break =is loop ko chod kar nikal ja
continue= sirf ushi perticular iteration ko chod kar nikal jao
Break statement be like - chal phli fursat me nikal 😂😂ye apun ka ilaka hai ab😂😂
By the way sir you are awesome ☺️😎😎 apki wajah se hi computer science journey achchi lag rhi h
Day - 19 Complete
👌👌👌
3:07 Right code =
user_input = int(input("Enter a number for Table :"))
print (f"This is the Multiplication table of {user_input}.")
for k in range (1,13):
print (f"{user_input} X {k} = {user_input * k}")
if k == 10:
break
print ("Now loop is breaked.")
Thx