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
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 💞👍 🙏
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
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.
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()
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.
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
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 😍)
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 🥰🥰🥰🥰😇😇😇
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
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
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
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 :)
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👍✨
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.....................................
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.
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.
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.
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.
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
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 😍
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
Superb.... superb...... superbbbbbbbbbb...we cont believe that even we can print different types of patterns in the python after seeing this video. 🥳🥳🥳🥳🥳🥳🥳🥳
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😭😭❣️❣️🙏🙏
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
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
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
Elegant explanation! Seriously this is only video which explains the logic behind these programs. Thanks a ton.😇
💯💯
@@aliciajohn5528run the code written in this video for right sided triangle you get a piramid 😅
Totaly agreed with this comment!
teaching the thought process behind the problem is far better than solving many number of problems.....thank you so much mam.
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 💞👍 🙏
I am saying seriously your channel deserves a million subscribers.The animations and the explanation is just perfect.
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
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.
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()
thanks your comment helped me!
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.
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
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 😍)
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
🥰🥰🥰🥰😇😇😇
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
You helped me to build logic in pattern printing. Kudos 👌 to you.
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
I have seen so many videos for clear explanation but they can't, but you are awesome reward from 😍😘 take it.
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
after going through lots of videos, Now I felt confident enough to solve any pattern programs, the best video ever thanks a lot......
Amazing Explanation..very few teachers have the right words to explain programming... you did it perfectly, thanks alot.
Mam your art of teaching is brilliant......
So easy to understand....
And never get any quarry...
To full watch the video...
I havent had such clear and crystal concept in loops until this video: Hats of !!
wow... loved it.. hoped our university teacher taught this way
Easily the best video ive seen to explain nested for loops...thank you!
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 :)
paid comment
this is the best video on pattern solving thank you maam for clear understanding of loops and entire thought process god bless you!
I forgot how logic would work in nested loops. Then, I found this gem. Thanks!
Your teaching method is lit💫💫 no one could make me understand this concept until i saw your video
i struggled a lot to understand this concept .u made it understand soooo easily ..Thanks a ton 🙏
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👍✨
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.....................................
You explain these patterns logic in a very simple and efficient manner.
Thank you so much!!!
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
I am very glad that such type teachers are still alive , thank you very much mam.
Seriously ,the best explanation for building a rigid confidence in for loops programs'
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 🥰🥰
You made pattern program in python so simple and understandable. Thank you.
Best video i have ever found on printing patterns in python, thanks alot!!
best video ever !!! I was hoping to find a video like this..easy to understand using simple logic. Thankyou!!!!
I feel like i need this indian courses. thanks a bunch mam you did a great job making this easy to understand.
The right side triangle is wrong bro,
Pls paste your program over here, we can help you find the mistake you have done in copying from video
Excellent teaching. Even teacher does not teach like you. 👏👏👏
best ever coding tutorial through visualization thank youuu soo much and feeling blessed about finding your page🙏
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
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.
can you explain me this code in simple language please
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 😢😢😢
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.
SUPERB explanation. Even school teacher couldn't make me understand. Thanks a lot
Your way of teaching is mind blowing… keep it up… U r the best teacher 😘😘
So nicely explained with simple logic, Now I don't need to see any other video for patterns thank you so much.
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.
Amazing explanation , it is easy to cover all patterns with simple logic you provide
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.
Mam one word for u is amazing,this level of clear explanation I hardly seen in RUclips
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.
crazyyy..., I was struggling to learn these kind off patterns .. THANK YOU>>>>>>
This is the best video I've seen yet on Patterns !!!! Definitely do watch this!
This channel deserves to be subscribed to. Really appreciate this video
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!
what a way of explaining these patterns , superb , m so happy after watching this .
It was very useful to me and your explanation is very good mam
n=int(input())
for i in range(0,n):
print("* "*n)
instead of i, j loops , i loop will print the (rows,columns)
explanation is very simple and understandable .. thanx a lot ☺
This is amazing video I watched today, thanks a lot for the efforts, this is the easiest explanation ever :)
Wow what an amazing talent i just discovered..!!!
Lots of respect !!!
Very thankful to mam.Really amazing presentation and explanation skills in the slides for better understanding to the students
.. 🙏🙏🙏
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( )
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.
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
Best explaination I have ever seen till now on youtube!!!!!🎉
Thanks a lot mam !! This is the easiest explanation ever : )
Your way of teaching is mind blowing… keep it up… U r the best teacher 🎉
very very very good explantion . best pattern building tutor of python on whole youtube
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.
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 😍
Thank you ma'am.... You nailed it ❤❤❤❤❤
Literally the best video I have found on yt for patterns
Just love it❤❤❤
What a great explanation.. now I am able to write any star pattern
Very helpful video and have given the explanation in simple and easy way
wow wow wow....u steal the show...what an explanation...Thanks tons
Really, it is too much helpful video on RUclips.❤
Best tutor on youtube.
amazing. Now i am starting to answer my teacher's tricky questions. Thanks a lot.
one of the best videos to learn the concepts of nested loops and patterns
This tutorial was verry helpful thanks a lot now I understand the concept.
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
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.
I was confused seeing other videos. This is brilliantly explained.
Decreasing triangle using while loop
n=int(input())
i=1
while i=i:
print("*",end=" ")
j=j-1
print()
i=i+1
i was feel difficult for this topic for so many days . but it is simply awsome.tq mam.it was very useful
Superb.... superb...... superbbbbbbbbbb...we cont believe that even we can print different types of patterns in the python after seeing this video. 🥳🥳🥳🥳🥳🥳🥳🥳
🙏🙏🙏🙏🙏 Thank you mam.... One of the best teachers in my life.... Keep teaching.... All the best.
Thanku so much mam...this is the best explaination I ever had on pattern problems
damn..ukw ? I've been struggling with this for sometime now 😭
So thanks for making this easy 💗
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😭😭❣️❣️🙏🙏
Thank you very much, for solving my pattern problem !! 🙂
Happy to help!
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
tq ,one of the best for beginners.iam so cofused about these pattrens before watching it.tq once again
I love your way of teaching along with explaination which was really awesome thanks
it was confusing for a month..really great learning...and understood
thanks a lot i have seen so many videos on youtube but the way you explained was awesome
Thank you so much. Your explanation was great. Now I am able to solve pattern programs
Excellent lecture on coding patterns. It becomes easy to code after comprehending first two problems.
Thanks a lot!
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
Even i didn't get proper it reverses