break and continue in Python | Python Tutorial - Day #19

Поділитися
Вставка
  • Опубліковано 15 січ 2025

КОМЕНТАРІ • 1,1 тис.

  • @faheemkhan9786
    @faheemkhan9786 2 роки тому +46

    Best python course ever on UA-cam

  • @dabilover444
    @dabilover444 Рік тому +12

    #5 table
    for i in range(1,11):
    print("5 *", i, "=", 5*(i))

  • @vaibhavsoni4680
    @vaibhavsoni4680 Рік тому +25

    for i in range(1,200):
    if i>=50 and i

    • @channeler114
      @channeler114 5 місяців тому

      error

    • @Demonlord.05
      @Demonlord.05 2 місяці тому +1

      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 ===

    • @PrabhatKumar-k4k
      @PrabhatKumar-k4k Місяць тому

      Uncle else kahan hai

  • @FamousTodayOfficial
    @FamousTodayOfficial День тому +1

    3:18 , break statement say leave this loop , i done this sir 😊😊😊😊😊😊😊😊

  • @spinexo
    @spinexo 2 роки тому +15

    i=int(input("enter your dream package"))
    while(i

  • @debasishbesra2901
    @debasishbesra2901 Рік тому +51

    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.

    • @MuhammadHashirAshfaq
      @MuhammadHashirAshfaq Рік тому +3

      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

    • @usd00
      @usd00 Рік тому +1

      @@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

    • @shaanu_03
      @shaanu_03 Рік тому +1

      @@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

    • @divyanshutiwari5450
      @divyanshutiwari5450 5 місяців тому +1

      @@MuhammadHashirAshfaq in first code its i + 1 but in second one its just i . I hope you understand

  • @Mohitkdm_vlogs
    @Mohitkdm_vlogs Рік тому +9

    your notes and videos are so amazing for a beginnner learing python❤❤❤❤❤❤❤❤❤

    • @anithathakur9892
      @anithathakur9892 8 місяців тому

      May I know from whr did you get his notes??

  • @awaisarshad123
    @awaisarshad123 2 роки тому +2

    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 ♥♥♥

  • @piyushkhanna1755
    @piyushkhanna1755 2 роки тому +13

    LOVE SKILLS + LEARN SKILLS = EARN MONEY SKILLS = LOVE YOU HARRY SIR 😃😃😃❤️❤️❤️❤️❤️👍👍👍👍👍👍

  • @Unknown-ey4wn
    @Unknown-ey4wn 2 роки тому +4

    Hello guys I am happy to introducing new Rapper in the home. Have fun at 11:45

  • @charcheetdh
    @charcheetdh 2 роки тому +52

    You didnot Choose Coding, Coding Choose YOu bro. LOve from Nepal❤

    • @Lucifer-ff5eg
      @Lucifer-ff5eg 2 роки тому +3

      Love from nepal 💜

    • @ApniGardening7
      @ApniGardening7 2 роки тому

      I not think coding choose his
      This is his hard work

    • @charcheetdh
      @charcheetdh 2 роки тому +1

      @@ApniGardening7 Bro listen, I want told him in the context of he is supertalented in the area of coding .

    • @RandomAndShorts
      @RandomAndShorts 2 роки тому +2

      Love from Bhairava

    • @San-Deve
      @San-Deve 9 місяців тому

      I think you should take English class before Python. ​@@ApniGardening7

  • @amitranjeetjha1240
    @amitranjeetjha1240 2 роки тому +14

    This course is awesome 🔥🔥

  • @earnonline7205
    @earnonline7205 Рік тому +18

    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"

  • @softwaretechnical2411
    @softwaretechnical2411 2 роки тому +1

    Sir aapka explanation mujhe easy me samjh me aa jata hai so tnk u sir for giving knowledge

  • @rafaybaig4281
    @rafaybaig4281 8 місяців тому +15

    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

    • @DailyMind96
      @DailyMind96 7 місяців тому

      First watch the full video

    • @rafaybaig4281
      @rafaybaig4281 7 місяців тому

      @@DailyMind96 already dekh li he bro, lekin me bohot genius ho pehle hi issues figure out kar leta ho

    • @gauravkumarjha8296
      @gauravkumarjha8296 6 місяців тому

      ​@@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

  • @zuberzuvi7185
    @zuberzuvi7185 Рік тому

    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)

  • @FoxMC07
    @FoxMC07 2 роки тому +98

    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!!! 😁

    • @gopalkushwah3831
      @gopalkushwah3831 2 роки тому +6

      It's a fake reality

    • @mariamhasan3733
      @mariamhasan3733 2 роки тому +1

      How long did it take you to complete the video?

    • @FoxMC07
      @FoxMC07 2 роки тому +4

      @@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

    • @shubhamkumarvishwakarma9949
      @shubhamkumarvishwakarma9949 Рік тому +2

      @@FoxMC07 Can you please share your notes

    • @FoxMC07
      @FoxMC07 Рік тому +1

      @@shubhamkumarvishwakarma9949 I can't but you can download Harry's notes in description.....sorry 😔

  • @mrmahaveer7743
    @mrmahaveer7743 Рік тому +1

    Love from Pakistan sir.... Big fan💜💖💖

  • @hindivines462
    @hindivines462 2 роки тому +4

    #19 Thanks for this course sir 🙏🙏

  • @NamanRai2431
    @NamanRai2431 2 роки тому +1

    Har Video ke starting me jab aap smile krte ho... goosebumps❤️❤️❤️❣️❣️ Love from Ahemdabad

  • @tajinder715
    @tajinder715 2 роки тому +261

    kon kon video dekh kar confident feel krta hai???????🤘🤘🤘🤘🤘🤘

  • @PhotoshopEditing-t9s
    @PhotoshopEditing-t9s 5 місяців тому

    simple table of 5 using for loop:
    for table in range(1,15):
    print("5 *",table, "=", 5*table)
    if(table==10):
    break

  • @luhem_
    @luhem_ 2 роки тому +7

    Harry bhai add some coding exercises at the end of each video . btw amazing series!!!

  • @ShadowCipher
    @ShadowCipher Рік тому +4

    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:)😁🤪

    • @rohitpaul2750
      @rohitpaul2750 Рік тому +1

      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...🙂🙂

    • @ShadowCipher
      @ShadowCipher Рік тому

      @@rohitpaul2750 Rest In Peace bro..

    • @MuhammadHashirAshfaq
      @MuhammadHashirAshfaq Рік тому

      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

    • @kiranhonnali1944
      @kiranhonnali1944 Рік тому +1

      @@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

    • @fawzanulhaque483
      @fawzanulhaque483 Рік тому +1

      Best one 😂😂😂😂

  • @realsigmatude
    @realsigmatude 2 роки тому +9

    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

    • @nitish6239
      @nitish6239 2 роки тому

      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.

    • @rohanrajput_9
      @rohanrajput_9 2 роки тому +5

      @@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

  • @dhananjayvaish3276
    @dhananjayvaish3276 2 роки тому +1

    Harry bhaiya mast playlists bnate h

  • @YogeshKumar-kr1ke
    @YogeshKumar-kr1ke 2 роки тому +34

    Thank you sir , you are working hard for us❤️❤️🥰

    • @rishiraj2548
      @rishiraj2548 2 роки тому

      Yes, thanks a billion to Harry

    • @mohitthakur5988
      @mohitthakur5988 2 роки тому

      bro project ideas ha kuch jitna kya ha hum ne
      19 days tak ka

    • @manvichauhan22
      @manvichauhan22 2 роки тому

      Yes

    • @mohitthakur5988
      @mohitthakur5988 2 роки тому

      @@manvichauhan22 bro fer bta do na muja kuch idea nhi ha tum bta do

  • @Animeworld.fz0
    @Animeworld.fz0 2 роки тому

    Aap bht acche se btate h bhai
    So apko dil se thanks salute bhai

  • @siddharthguliyani4032
    @siddharthguliyani4032 2 роки тому +15

    Saw this playlist on day 9, & covered it in fast pace, now i always wait fr 5 pm in the evening. Thanks Harry bhai.

    • @steps.ofLife
      @steps.ofLife 2 роки тому +2

      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????

    • @digitaldev1717
      @digitaldev1717 2 роки тому +1

      @@steps.ofLife bro you can access the playlist 👍 That's you happy 🤓

    • @laxeveloper1473
      @laxeveloper1473 2 роки тому

      Fr means for real not for. please correct it 😶😶😶

  • @suvajitdey6423
    @suvajitdey6423 11 місяців тому

    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.

  • @ApniGardening7
    @ApniGardening7 2 роки тому +6

    Harry you are brilliant in coding

  • @Smartandshopperhub
    @Smartandshopperhub 10 місяців тому +1

    thank you very much sir.........

  • @gitikapinjani
    @gitikapinjani 2 роки тому +3

    Nicely explained!

  • @SambhavJain-vk9sy
    @SambhavJain-vk9sy 7 місяців тому

    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.

  • @saimaheshri
    @saimaheshri 2 роки тому +5

    Main aapke purane video dekh raha hoon Python ke ismein aur usmein kya difference hai please tell me sir

    • @badalsahoo3902
      @badalsahoo3902 2 роки тому +2

      Yee brand new course he , some other topics are covered in new course and some new projects

    • @saimaheshri
      @saimaheshri 2 роки тому

      @@badalsahoo3902 Ok bro thanks 🙂🙂

  • @sardarestatemarketing
    @sardarestatemarketing Рік тому

    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

  • @inlife9120
    @inlife9120 Рік тому +6

    Loved the fact that it's for free in youtube. Just need to have data package. Thanks Bhai... You're saving Education itself.

    • @JENNYOPJOD
      @JENNYOPJOD Рік тому

      tho bhai data bi free karde apke liye??

    • @JENNYOPJOD
      @JENNYOPJOD Рік тому

      kaise kaise log hai ..if u want to appreciate do it neatly

    • @inlife9120
      @inlife9120 Рік тому

      @@JENNYOPJOD tu krdo bhai tera g*ande de ke. Hum se to itna he hosak ta he bhai...

  • @asamadawais
    @asamadawais Рік тому

    @CodeWithHarry you are class in your class!!!👏👏👏

  • @nafisabid202
    @nafisabid202 2 роки тому +10

    #HarryBhaiya we need some practice problems also at the end of each video...........as you did in your 15 hours one shot video

  • @sardarestatemarketing
    @sardarestatemarketing Рік тому

    for i in range(10):
    if (i == 8):
    print ("iteraltion skip kr do")
    continue
    print ("10 X ",i,"=",10*i)
    #continue skip specific iteration

  • @PROGRAMMER_CODER
    @PROGRAMMER_CODER 2 роки тому +6

    Also we can write this way:
    for j in range(1,14):
    if j>10:
    break
    print("5 X",j,"=",5*j)

  • @tirthajit.das.18
    @tirthajit.das.18 Рік тому +1

    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...

  • @_tryn_
    @_tryn_ 2 роки тому +5

    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?

    • @laxeveloper1473
      @laxeveloper1473 2 роки тому +2

      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...

    • @atharva_patel
      @atharva_patel 2 роки тому

      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

    • @laxeveloper1473
      @laxeveloper1473 2 роки тому

      @@atharva_patel i started from class 3rd bro... We are different. 💀

    • @thesiddhantsankhla
      @thesiddhantsankhla 2 роки тому

      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

    • @ajayjadhav1637
      @ajayjadhav1637 2 роки тому +7

      Me who in final sem of engineering and learning my first language💀💀

  • @alizaawan148
    @alizaawan148 10 місяців тому

    # 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

  • @sagarm17
    @sagarm17 2 роки тому +4

    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.....

    • @squad_infotech
      @squad_infotech 2 роки тому

      see at 12:05

    • @sagarm17
      @sagarm17 2 роки тому

      @@devendrakalwani but can I download that

  • @man_united-z1h
    @man_united-z1h 7 місяців тому +1

    Day 19 done ✅

  • @atharvadhobale8747
    @atharvadhobale8747 2 роки тому +3

    @codewithharry please take patterns as deep as possible in this course. I am sure you will see my comment. Thanks in advance 🙏

  • @anonymous____________________4
    @anonymous____________________4 2 роки тому

    Pranam bhrata 🙏 apka bahutt baht dhanyawad ❤️😌🙏😇

  • @Alimaz2
    @Alimaz2 Рік тому +4

    break statement kahy gah : jaldi hato waha sy📢

  • @charcheetdh
    @charcheetdh 2 роки тому +2

    Love From Nepal Harry Bhai. I want to tell You something harry bhai, I love you❣

  • @saimaheshri
    @saimaheshri 2 роки тому +3

    Hi

  • @cagohel4181
    @cagohel4181 2 роки тому

    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...

  • @CodeWithHarry
    @CodeWithHarry  Рік тому +29

    Code Backup Repository: github.com/CodeWithHarry/100-days-of-code-youtube

    • @MuhammadHashirAshfaq
      @MuhammadHashirAshfaq Рік тому

      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

    • @pratimakp7137
      @pratimakp7137 Рік тому

      Sir pls pin it

    • @crazygamer82821
      @crazygamer82821 Рік тому

      harry bhai apna comment pin krlo wrna gum ho jye ga

    • @fawzanulhaque483
      @fawzanulhaque483 Рік тому

      ​@@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

    • @DhruvSharma-x6l
      @DhruvSharma-x6l 10 місяців тому

      Day 19

  • @IBRAHIMNAZIM7792
    @IBRAHIMNAZIM7792 7 місяців тому

    Course is amazing

  • @kracksilentgaming2830
    @kracksilentgaming2830 Рік тому +3

    Aap is video ko 1x me hi dkh rhe h 😂😂

  • @BhaiKbhai-l2q
    @BhaiKbhai-l2q 11 місяців тому +97

    Any class 12th Cs student here😅

  • @AbdulkhaliqKz
    @AbdulkhaliqKz 4 місяці тому

    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))
    🎉🎉🎉🎉🎉🎉

  • @shaon1412
    @shaon1412 2 роки тому +3

    day #8 of asking to make a discord server

  • @ameerausman3822
    @ameerausman3822 Рік тому

    Assalam.O.Alaikum!!
    Harry Bhai you are bestest Teacher💞💞💞...

  • @adityagoswami8144
    @adityagoswami8144 2 роки тому +4

    Did anyone notice the topic of day 20 and 21 at 8:10

  • @techex4795
    @techex4795 2 роки тому

    Bilkul Maza Arraha hai harry bhai

  • @junaidtanveer7191
    @junaidtanveer7191 2 роки тому

    nice harry bhai Are you great teacher😍

  • @aaku2684
    @aaku2684 7 місяців тому

    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)

  • @abdullahbhai234
    @abdullahbhai234 Рік тому

    Amazing and interesting

  • @omyadav_143
    @omyadav_143 2 роки тому +1

    maza aaraha hai!

  • @SSR3B
    @SSR3B 5 місяців тому

    for i in range(1, 200):
    print(i * 5)
    if i * 5 >= 50:
    break
    print('limit reached')

  • @nishaanjum4901
    @nishaanjum4901 10 місяців тому

    Thank you sir. so much respect for you from Pakistan.

  • @AMARJEETKUMAR-ce9sc
    @AMARJEETKUMAR-ce9sc Рік тому

    Khuda ka bheja Hua Nayab Hira..Well done Harry Bhai...God Bless you for all the good work you are doing..Kudus...

  • @anjalikashyap7918
    @anjalikashyap7918 2 роки тому +1

    Thank you so much 🙏

  • @YOUTHKAISLAM
    @YOUTHKAISLAM 5 місяців тому

    break statmant
    #simple table of 10 usage for loop:
    for table in range(1,15):
    print ("10*",table,"=",10*table)
    if(table==10)
    break

  • @user-ShashankTiwari123
    @user-ShashankTiwari123 9 місяців тому

    Thanku code with harry for provideing free python course

  • @owaisnadeem2751
    @owaisnadeem2751 Рік тому

    Day 19 Present Sir .
    Love and respect from Pakistan

  • @noobdestroyer6964
    @noobdestroyer6964 2 роки тому +1

    And I will see you next time.
    I love this sentence when harry bhai says it.

  • @Rishisoni001
    @Rishisoni001 8 місяців тому

    for i in range(11):
    print("5 X", i+1, "=", 5 * (i + 1))
    if(i == 10):
    break
    print("Loop ko chodkar nikal gaya")

  • @tommyvercetti1530
    @tommyvercetti1530 6 місяців тому

    thank you sir for helping me out of confusion

  • @azamkhanayub1304
    @azamkhanayub1304 2 роки тому

    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 👍

  • @Animeworld.fz0
    @Animeworld.fz0 2 роки тому

    Aap ka jitna bhi thanks bolu km hai BHai❤❤🤟

  • @DineVlogs
    @DineVlogs 2 роки тому +1

    Present Harry bhaiya 🙂

  • @anithak2647
    @anithak2647 Рік тому +1

    Break statement ----->Just exit the loop
    Continue statement -----> Just exit the Iteration

  • @PankajCarEditz
    @PankajCarEditz 6 місяців тому +1

    Harry bhai 11:42 pe esa laga video ko 2x pe play kar diya 😂😂😂

  • @rockybob-df1el
    @rockybob-df1el 11 місяців тому

    best python course ever in histroy

  • @Huzaifa97820
    @Huzaifa97820 11 місяців тому

    Amazing coures❤

  • @Kushalkumar792
    @Kushalkumar792 Рік тому

    Thank you Harry bhai ❤

  • @adityapanchal534
    @adityapanchal534 2 роки тому

    Present sir, Day 19, Maja aa raha hai

  • @tanvirgsm
    @tanvirgsm 4 місяці тому

    Day 19 done, thanks

  • @md.mominurrahman747
    @md.mominurrahman747 2 роки тому

    Present brother, Love ❤️ from Bangladesh 🇧🇩

  • @aamirzaheeransari
    @aamirzaheeransari 2 роки тому +1

    Break statement kahega is loop ko chhodkar nikal jao 🤣🤣🤣 ok sir I love it nikal jaoo. 🤘👍😜

  • @AJAYMAN2529
    @AJAYMAN2529 2 роки тому +2

    Harry your my inspiration ☺️ love you bro

  • @alvinjack6672
    @alvinjack6672 Рік тому +1

    Present Sir

  • @ajeymalvi7893
    @ajeymalvi7893 2 роки тому +2

    Dil me reh jaati he na baat to axcha nhi lagta in table of 5😂 really got me funny laugh 🤣

  • @NEERAJ-dw9bt
    @NEERAJ-dw9bt 11 місяців тому +1

    Present sir 🤚

  • @IitianÃrman-u9o
    @IitianÃrman-u9o 2 місяці тому +1

    ♥♥

  • @lakshgamerz9211
    @lakshgamerz9211 10 місяців тому

    Thank you bhai for this helpful course

  • @Vaibhav-or3nc
    @Vaibhav-or3nc 3 місяці тому +1

    break statement will speak :- is loop ko chor kr nikal jao

  • @afreentaj5420
    @afreentaj5420 2 роки тому

    Mast teacher ever❤️👍

  • @engineeringlife-m8t
    @engineeringlife-m8t 9 місяців тому +1

    break =is loop ko chod kar nikal ja
    continue= sirf ushi perticular iteration ko chod kar nikal jao

  • @CrafterAakratiVishwari
    @CrafterAakratiVishwari Рік тому

    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

  • @devkarankvaghasiya194
    @devkarankvaghasiya194 Рік тому +2

    Day - 19 Complete

  • @codersplayground
    @codersplayground 2 роки тому +1

    👌👌👌

  • @unknownerror-t5u
    @unknownerror-t5u Рік тому +2

    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.")