Solve any Star Pattern program in Python

Поделиться
HTML-код
  • Опубликовано: 26 ноя 2024

Комментарии • 660

  • @Chris-vt6nl
    @Chris-vt6nl 9 месяцев назад +7

    My age is 38 I still remember my school and college teachers who were absolutely miserable with their teaching unfortunately not just that they personally even used to humiliate and demotivate saying I'll never be able to learn coding so should try changing my course of education to some non technical stream😡I had to go through this throughout my academics resulting in ultimately performing poorly with average grades. It is good to see a great teacher like you who clearly explains coding step by step slowly so that even a person who's not good academically struggles to understand coding could still learn without struggling a lot😊 wish you were my teacher in my school or college

  • @gufran_nabeel
    @gufran_nabeel 2 года назад +348

    Elegant explanation! Seriously this is only video which explains the logic behind these programs. Thanks a ton.😇

    • @aliciajohn5528
      @aliciajohn5528 2 года назад +9

      💯💯

    • @directorgopal194
      @directorgopal194 3 месяца назад

      ​@@aliciajohn5528run the code written in this video for right sided triangle you get a piramid 😅

    • @chitraatlani6457
      @chitraatlani6457 Месяц назад

      Totaly agreed with this comment!

  • @vegettoblue5279
    @vegettoblue5279 Год назад +119

    teaching the thought process behind the problem is far better than solving many number of problems.....thank you so much mam.

  • @MianMithu
    @MianMithu 2 года назад +60

    No other video can explain nested for loops in such a lovely way. You made my concepts totally clear and i was seriously wondering for it in this middle of night.
    Bundle of Thanks 💞👍 🙏

  • @techpiano7010
    @techpiano7010 9 месяцев назад +12

    I am saying seriously your channel deserves a million subscribers.The animations and the explanation is just perfect.

  • @ninjapirate123
    @ninjapirate123 Месяц назад +3

    For easier understanding, a for loop inside another for loop is basically a loop that controls what each row is gonna loop. So for example:
    for row in range():
    for col in range():
    print("*", end="")
    Basically means that, for col in range will print "*" on that row, and once it's done, it'll go back to the for row in range loop which will then move on to the next line (the line below it) and will do the same thing when coming back to the for col in range loop

  • @souvikdey7131
    @souvikdey7131 Год назад +13

    Excellent! I don't usually give comments on RUclips videos but this time I couldn't resist. You have taught me something I'll never forget. Now it makes me feel I know a bit more than others. Thank you.

  • @simranpatel1332
    @simranpatel1332 2 года назад +4

    Thanks ma'am for teaching this soo beautifully
    #this is a butterfly pattern
    n=5
    for i in range(n-1):
    for j in range(i+1):
    print("*",end=" ")
    for j in range(i,n-1):
    print(" ",end=" ")
    for j in range(i,n-1):
    print(" ",end=" ")
    for j in range(i+1):
    print("*",end=" ")
    print()
    for i in range(n):
    for j in range(i,n):
    print("*",end=" ")
    for j in range(i):
    print(" ",end=" ")
    for j in range(i):
    print(" ",end=" ")
    for j in range(i,n):
    print("*",end=" ")
    print()

  • @code-heads
    @code-heads Год назад +8

    Exceptional explanations.🥺
    Have been struggling with patterns since the time I learnt my first programming language, 2 years back. This is the best and most clear video.
    Thank you so much for this video.

  • @coc0228
    @coc0228 2 года назад +59

    One of best tutorials i have ever watched 👏🏻👏🏻👏🏻 best 19 mins I spent ever on youtube thank you for making my concept clear as a whistle 🙏🏻
    If the teacher is good the learning becomes fun

  • @sahiljamwal1312
    @sahiljamwal1312 Год назад +5

    Mam , uh are real gem .I was struggling in this from the last 4-5 days but you make very easy to understand . I literally watch lots of videos and i tried to understand this concept but i didnt . But now i can do any type of python printing question because of you . Lots of respect to uh(Hands down 😍)

  • @prabhanaithani5959
    @prabhanaithani5959 Год назад +1

    not even completed watching half of this video for first time, i just clicked the subscribe button...... thanks to god and you that i got this channel on right time............. you nailed it... keep it up
    🥰🥰🥰🥰😇😇😇

  • @shaikayesha2600
    @shaikayesha2600 2 года назад +3

    Thank you so much....this is the best video on pattern problems....since my PUC i haven't understood patterns properly....I was just mugging them up....no teacher in this world explained me this tricks....I wish I would have seen this before 5 years....anyways once again thank you so much for this incredible explanation....I just loved it

  • @dimplekumargupta5467
    @dimplekumargupta5467 3 года назад +21

    You helped me to build logic in pattern printing. Kudos 👌 to you.

  • @vyshnavks6505
    @vyshnavks6505 Год назад +2

    ma'am for decreasing triangle we can also write like this right
    n=5
    for i in range(n):
    for j in range(n-i):
    print('*',end=' ')
    print()
    ma'am your explaining level is....great anyone can understand easily...thank you

  • @code_genius2625
    @code_genius2625 3 месяца назад +2

    I have seen so many videos for clear explanation but they can't, but you are awesome reward from 😍😘 take it.

  • @samyakshukla8567
    @samyakshukla8567 Год назад +17

    Your explanation was extremely helpful and easy to understand. I was struggling with the concept of nested loops, but your clear and concise explanation made it easy for me to comprehend. Your expertise in python programming is undoubtedly impressive, and your willingness to share your knowledge is truly commendable. Thank you for taking the time to provide such a great explanation I HAVE AN EXAM TOMORROW

  • @nikhilreddy4582
    @nikhilreddy4582 Год назад +1

    after going through lots of videos, Now I felt confident enough to solve any pattern programs, the best video ever thanks a lot......

  • @Misha-ym9jq
    @Misha-ym9jq Год назад +4

    Amazing Explanation..very few teachers have the right words to explain programming... you did it perfectly, thanks alot.

  • @ayushupadhyaypy
    @ayushupadhyaypy Год назад +2

    Mam your art of teaching is brilliant......
    So easy to understand....
    And never get any quarry...
    To full watch the video...

  • @technolysys1998
    @technolysys1998 2 года назад +3

    I havent had such clear and crystal concept in loops until this video: Hats of !!

  • @abdulwajid6725
    @abdulwajid6725 3 года назад +12

    wow... loved it.. hoped our university teacher taught this way

  • @nomdeplume6594
    @nomdeplume6594 2 года назад +4

    Easily the best video ive seen to explain nested for loops...thank you!

  • @deepikamanunarayan9644
    @deepikamanunarayan9644 3 года назад +22

    Thanks a lot Ma'am, i can't believe that i am able to code after seeing couple of the patterns at the beginning of the video...made this concept very easy and understandable...superb video :)

  • @paramjjethwa8734
    @paramjjethwa8734 13 дней назад +1

    this is the best video on pattern solving thank you maam for clear understanding of loops and entire thought process god bless you!

  • @jiteshkumar208
    @jiteshkumar208 Год назад +5

    I forgot how logic would work in nested loops. Then, I found this gem. Thanks!

  • @deanryo7734
    @deanryo7734 3 месяца назад +3

    Your teaching method is lit💫💫 no one could make me understand this concept until i saw your video

  • @deepikasrinivasas3333
    @deepikasrinivasas3333 2 года назад +3

    i struggled a lot to understand this concept .u made it understand soooo easily ..Thanks a ton 🙏

  • @brandonnoronha5535
    @brandonnoronha5535 6 месяцев назад +1

    This is the best explanation I ever saw for creating patterns 😃 on RUclips ✨. Now I'll be able to solve any pattern very easily 👍. Thank you very much👍✨

  • @TROLLSGANG
    @TROLLSGANG Год назад +1

    saw many vedious before and googled many things to get the perfect logic haven't found anywhere . finally got it in "simple coding". heartfully thankyou.....................................

  • @nitinpatle6291
    @nitinpatle6291 2 года назад +4

    You explain these patterns logic in a very simple and efficient manner.
    Thank you so much!!!

  • @randmclck
    @randmclck 12 дней назад +1

    thank you so much this video is so helpful for me i didnt get any of other videos for pattern you cleared all my doubts for loop thank you so much

  • @DeepakSharma-tt5ry
    @DeepakSharma-tt5ry Год назад +1

    I am very glad that such type teachers are still alive , thank you very much mam.

  • @sudeeptisharma9712
    @sudeeptisharma9712 Год назад +2

    Seriously ,the best explanation for building a rigid confidence in for loops programs'

  • @ashishaggarwal7510
    @ashishaggarwal7510 2 года назад +2

    I have watched many videos but I was not able to do it but by seeing this I learnt the concept Behind it.
    Really thank you for such videos 🥰🥰

  • @solapeolojede
    @solapeolojede 3 месяца назад +1

    You made pattern program in python so simple and understandable. Thank you.

  • @deepanshurathore571
    @deepanshurathore571 Год назад +2

    Best video i have ever found on printing patterns in python, thanks alot!!

  • @beautifulDay2005
    @beautifulDay2005 10 месяцев назад +2

    best video ever !!! I was hoping to find a video like this..easy to understand using simple logic. Thankyou!!!!

  • @mikyasbaheru
    @mikyasbaheru 3 месяца назад +1

    I feel like i need this indian courses. thanks a bunch mam you did a great job making this easy to understand.

    • @directorgopal194
      @directorgopal194 3 месяца назад

      The right side triangle is wrong bro,

    • @SimplyCoding
      @SimplyCoding  3 месяца назад

      Pls paste your program over here, we can help you find the mistake you have done in copying from video

  • @RajeshKumar-dq8qr
    @RajeshKumar-dq8qr Год назад +2

    Excellent teaching. Even teacher does not teach like you. 👏👏👏

  • @arunmortade6772
    @arunmortade6772 2 месяца назад +1

    best ever coding tutorial through visualization thank youuu soo much and feeling blessed about finding your page🙏

  • @vibhutinarayanmishra7309
    @vibhutinarayanmishra7309 2 года назад +15

    n=5
    for i in range (n):
    for j in range (n-i):
    print(' ', end=' ')
    for j in range (i+1):
    print('*', end=' ')

    print()
    this code in work for me

    • @abdellahelasri7783
      @abdellahelasri7783 2 года назад

      No, its false bro the 3rd line is not correct ,look, we have in the first line i=0 and n=5 so n-i means you will print 5 spaces then one * ,I mean in the first line we need just 4 spaces + '*' and same for the 2nd: 3 spaces + 2 '*' ..... : for j in range(i,n-1) is true! thank you.

    • @Nothing-78646
      @Nothing-78646 5 месяцев назад

      can you explain me this code in simple language please

    • @OggyJan-j6m
      @OggyJan-j6m 2 месяца назад +1

      n= 5
      for i in range(n):
      for j in range(n-i):
      print("*",end=" ")
      print()
      I tried it but it ran perfectly. How is it wrong?? Plz explain 😢😢😢

  • @aditya-garg
    @aditya-garg Год назад +4

    Amazing content,taught in a very digestible way.
    @9:45 for decreasing triangle one may also use
    for j in range(n-i):
    Also,@11:34, I would like to mention that This increasing pattern of "stars" is shifted automatically due to first triangle of "spaces".
    #15:42, I ended up modifying the third nested loop to range(i) to get same result.

  • @hiteshp2477
    @hiteshp2477 Год назад +1

    SUPERB explanation. Even school teacher couldn't make me understand. Thanks a lot

  • @YeminaAdnan
    @YeminaAdnan Месяц назад +1

    Your way of teaching is mind blowing… keep it up… U r the best teacher 😘😘

  • @rohitjain2663
    @rohitjain2663 9 месяцев назад +1

    So nicely explained with simple logic, Now I don't need to see any other video for patterns thank you so much.

  • @patrickfouhy9102
    @patrickfouhy9102 2 года назад +7

    THANK YOU!!! I was having a hard time figuring out the order of operations, and how the nested loops reach with one another and this is a fantastic explanation.

  • @shortflicks83
    @shortflicks83 Месяц назад +2

    Amazing explanation , it is easy to cover all patterns with simple logic you provide

  • @mohitmaheshwarkar971
    @mohitmaheshwarkar971 18 часов назад

    Ma'am, you are a great teacher. Please create a detailed video on Python programming, databases, and other topics so that all of us can benefit.

  • @prince0881
    @prince0881 2 года назад

    Mam one word for u is amazing,this level of clear explanation I hardly seen in RUclips

  • @DishandDestinationwithQuotes
    @DishandDestinationwithQuotes 2 года назад +17

    Can you please check the right sided triangle with decreasing spaces. Not correct I think ...
    Though it is helpful but it's not right sided.

  • @anjanprasad112-AP
    @anjanprasad112-AP 3 года назад +4

    crazyyy..., I was struggling to learn these kind off patterns .. THANK YOU>>>>>>

  • @abcdabcd8605
    @abcdabcd8605 4 месяца назад

    This is the best video I've seen yet on Patterns !!!! Definitely do watch this!

  • @iqbal682
    @iqbal682 2 года назад

    This channel deserves to be subscribed to. Really appreciate this video

  • @RohithS-ig4hl
    @RohithS-ig4hl Год назад +2

    Thank you so much simply coding. you made pattern problems look so easier! what a simple and concise way of teaching.Really appreciate this effort!

  • @Gaurav_Dhamija
    @Gaurav_Dhamija 2 года назад +1

    what a way of explaining these patterns , superb , m so happy after watching this .

  • @bythegodgrace5691
    @bythegodgrace5691 Год назад +2

    It was very useful to me and your explanation is very good mam

  • @hepsibhanandas1078
    @hepsibhanandas1078 2 года назад +2

    n=int(input())
    for i in range(0,n):
    print("* "*n)
    instead of i, j loops , i loop will print the (rows,columns)

  • @ayushdas6459
    @ayushdas6459 2 года назад +4

    explanation is very simple and understandable .. thanx a lot ☺

  • @lafkiri
    @lafkiri 3 года назад +7

    This is amazing video I watched today, thanks a lot for the efforts, this is the easiest explanation ever :)

  • @ghanishah
    @ghanishah 2 года назад +1

    Wow what an amazing talent i just discovered..!!!
    Lots of respect !!!

  • @JPASSaiRamPMPC
    @JPASSaiRamPMPC 2 года назад +6

    Very thankful to mam.Really amazing presentation and explanation skills in the slides for better understanding to the students
    .. 🙏🙏🙏

  • @ssrsparklinggirls2435
    @ssrsparklinggirls2435 8 месяцев назад +1

    The program should be written like this (right side Triangle )
    For i in range(1,6):
    For j in range(1,i+1):
    Print("*",end=' ')
    Print( )

  • @sagarsjdjfn
    @sagarsjdjfn Год назад

    Amazing. Thank a ton. I have checked out so many videos and sites. But you cleared the concept of space and # in one line. Best part was increase and decrease logic in one line. Note to all - Save this video in your playlist.

  • @WHITEDEVIL-nu5og
    @WHITEDEVIL-nu5og 3 года назад +3

    you give the understanding of GOD level. i already that how to know triengle with only one loop but with two loop this is best video i ever see.
    also your voice and accent was so good in the video. i love your voice
    thank you ma'am
    GOD bless you

  • @akash0877
    @akash0877 Месяц назад

    Best explaination I have ever seen till now on youtube!!!!!🎉

  • @itsarsh4421
    @itsarsh4421 3 года назад +7

    Thanks a lot mam !! This is the easiest explanation ever : )

  • @jaypatel-lyf
    @jaypatel-lyf Год назад +12

    Your way of teaching is mind blowing… keep it up… U r the best teacher 🎉

  • @yash-ds7bw
    @yash-ds7bw 2 месяца назад

    very very very good explantion . best pattern building tutor of python on whole youtube

  • @PhysicsIsReallyBeautiful
    @PhysicsIsReallyBeautiful Год назад +1

    Hey, there is an easier code to do for the right sided triangle.
    n = num
    for i in range(n+1):
    print (" "*(n-i),"*"*i)
    Thank You for the explanation.

  • @naveenkrishna4292
    @naveenkrishna4292 5 месяцев назад

    Mam seriously now I'm cleared with this concept , i have searched and seen my videos related into this concepts wow its simply awesome i was recommended your videos to my known persons as well please keep doing 😍

  • @RinkuSingh-ed3wi
    @RinkuSingh-ed3wi Месяц назад +1

    Thank you ma'am.... You nailed it ❤❤❤❤❤

  • @anuragnirmal7621
    @anuragnirmal7621 2 месяца назад

    Literally the best video I have found on yt for patterns
    Just love it❤❤❤

  • @srinireddy6961
    @srinireddy6961 10 месяцев назад

    What a great explanation.. now I am able to write any star pattern

  • @mirzamuneebbaig15
    @mirzamuneebbaig15 11 месяцев назад +2

    Very helpful video and have given the explanation in simple and easy way

  • @garimabatra2658
    @garimabatra2658 4 месяца назад

    wow wow wow....u steal the show...what an explanation...Thanks tons

  • @deadperson14
    @deadperson14 11 месяцев назад +2

    Really, it is too much helpful video on RUclips.❤

  • @dennismuriira3293
    @dennismuriira3293 2 года назад

    Best tutor on youtube.

  • @kavinkishorex-bi9477
    @kavinkishorex-bi9477 Год назад

    amazing. Now i am starting to answer my teacher's tricky questions. Thanks a lot.

  • @harshalnath4853
    @harshalnath4853 Год назад

    one of the best videos to learn the concepts of nested loops and patterns

  • @krissie115
    @krissie115 2 года назад +2

    This tutorial was verry helpful thanks a lot now I understand the concept.

  • @alexafloret
    @alexafloret 2 месяца назад

    the explanation is decent. so if u have basic idea of loops u can understand patterns after this lecture. but there are some mistakes in code so solve those codes on your own too

  • @midnajo437
    @midnajo437 Год назад +1

    Thanks a lot for posting such a informative video about pattern. You explain each step very clearly. I learned a lot to write a code for any pattern.

  • @souravanand932
    @souravanand932 Год назад

    I was confused seeing other videos. This is brilliantly explained.

  • @moumitamalakar8880
    @moumitamalakar8880 2 года назад

    Decreasing triangle using while loop
    n=int(input())
    i=1
    while i=i:
    print("*",end=" ")
    j=j-1
    print()
    i=i+1

  • @chintalanaresh7105
    @chintalanaresh7105 Год назад

    i was feel difficult for this topic for so many days . but it is simply awsome.tq mam.it was very useful

  • @charankumar.v4549
    @charankumar.v4549 2 года назад

    Superb.... superb...... superbbbbbbbbbb...we cont believe that even we can print different types of patterns in the python after seeing this video. 🥳🥳🥳🥳🥳🥳🥳🥳

  • @kesarivishnu9152
    @kesarivishnu9152 2 года назад

    🙏🙏🙏🙏🙏 Thank you mam.... One of the best teachers in my life.... Keep teaching.... All the best.

  • @smritisingh9828
    @smritisingh9828 3 года назад +2

    Thanku so much mam...this is the best explaination I ever had on pattern problems

  • @juveriashaik7363
    @juveriashaik7363 3 года назад +4

    damn..ukw ? I've been struggling with this for sometime now 😭
    So thanks for making this easy 💗

  • @nidhirani7007
    @nidhirani7007 Год назад

    I am crying in happiness and also I'm regrating very much that why I had found ur vdos this late...u r amazing teacher a huge respect and thanks to u😭😭❣️❣️🙏🙏

  • @utkarshpandey491
    @utkarshpandey491 2 года назад +3

    Thank you very much, for solving my pattern problem !! 🙂

  • @jaypatel8923
    @jaypatel8923 Месяц назад +1

    Good Explanation
    But one thing i didn't understand is if using this method if we are doing increasing space then it should not print space in first row, but it is printing space in first row

  • @m.bhargavsaikumar9234
    @m.bhargavsaikumar9234 Год назад

    tq ,one of the best for beginners.iam so cofused about these pattrens before watching it.tq once again

  • @androidtv1410
    @androidtv1410 2 года назад +2

    I love your way of teaching along with explaination which was really awesome thanks

  • @mydailydishes4006
    @mydailydishes4006 Год назад

    it was confusing for a month..really great learning...and understood

  • @brokenheart7630
    @brokenheart7630 Год назад

    thanks a lot i have seen so many videos on youtube but the way you explained was awesome

  • @kalyandas4852
    @kalyandas4852 2 месяца назад

    Thank you so much. Your explanation was great. Now I am able to solve pattern programs

  • @khanconnects
    @khanconnects 2 года назад +4

    Excellent lecture on coding patterns. It becomes easy to code after comprehending first two problems.
    Thanks a lot!

  • @dharmaraju6429
    @dharmaraju6429 2 года назад +5

    N=5
    for i in range(n) :
    for j in range(i, n):
    Print(' ', end=' ')
    for j in range(I+1):
    print('$', end=' ')
    print()
    Not getting proper Right sided triangle Please let me know mam

    • @ramyahp4493
      @ramyahp4493 Месяц назад

      Even i didn't get proper it reverses