Number Pattern | Part 1 | Python Pattern Programs
Вставка
- Опубліковано 9 лют 2025
- In this Python Pattern Printing Programs video tutorial you will learn how to print numbers in different shape in detail.
To print the pattern i will use nested for loops.
In this program pattern contains two for loops: the first loop is responsible for rows and the second for loop is responsible for columns.
For more free tutorials on computer programming
/ amulsacademy
AmulsAcademy
i like that you explained in a way that's easy to understand.
ma'am you are too good ... pehli baar dil kar rha hai ki kisi channal ko subscribe kr lu ... first video watch ki or dil kiya subscribe krne ko.. nice content. thanks
Since I found this channel I fell in love with pattern printing programs.
Itna aacha kaise padhate ho ma'am
Thank you 😊❤️
ua-cam.com/video/pbePbEBEhbk/v-deo.html
Easiest Explanation ever ❤ please visit atleast once it clear all my doubts
Honestly !
You explaining skills are best
I am watching this on the practical day 😂😅 wish me luck 🤞🏻
Same man 💀
sameee
Good luck 😂
Thank you! Helped a lot with my coding homework, i was going to so to coding class with nothing to present but thanks to you I am able to present something! Thanks again!
Happy to help 😊
fall in love with coding with you mam, thanks for providing us this quality of education....love you mam
Glad to hear that :)
ua-cam.com/video/pbePbEBEhbk/v-deo.html
Easiest Explanation ever ❤
at 9:10 we can also use:
n = int(input("Enter a number : "))
for i in range(n):
for j in range(i+1):
print(i-j+1,end=" ")
print()
Very explicit video btw. Thanks for sharing
Thank you :)
Ma'am this is very helpful as I learned python in school but was not able to understand patterns but you helped me understand all patterns
Thank you:)
I really thank you for helping me in doing my lecture assignments, thanx🥰
I am very much grateful to you and salute to your kind honor as you share such a excellent video which is very much useful and it is really a learning platform. Thanking You Very Much.
Thanks for the video mam this is very much useful for me. You have well explained it. 😊😊 And you also didn't miss any small parts .so, now I am 💯 clear with it.
My pleasure 😊
At 13:36 in line 2 we can also use (n, -1, -1) :
Instead of changing any value in 4 th line
Btw very nice explanation
Thank you :)
wahhh Thanku soo much. I am learning a lot from your channel.
For the 2nd problem, we can also write:
n=int(input("Enter the number of rows you want: "))
for i in range(n):
for j in range(i+1):
print(i+1,end=" ")
i=i-1
print()
By the way, thank you for the amazing tutorials!
Absolutely very good information
And your way of explanation is simply super mam
for i in range (5,0,-1):
print ( )
for j in range (5,(i-1),-1):
print (j,end="")for i in range (5,0,-1):
print ( )
for j in range (5,(i-1),-1):
print (j,end="")
I am big fan for your explanation
Thank you :)
Great explanation mam,understand the tricks very easily when u are saying.
Very good teachingin a simplified manner
If you tell us the logic behind number and star patterns that would be helpful 👍 one simple logic to write all patters
Clear explanation ❤ thank you so much sis😊
It's very easy to write a code when we follow your tips,tricks ❤️❤️
Your Voice is so Sweet.... 🥰 take it as a Compliment....
Thanks alot Amulya
Thank you very much. Really appreciate the way you make someone understand the concepts.
Thank you 😊
U teach better than my cs teacher!😉
Sorry my cs ma'am!
But genuinely appreciate your teaching....just luv ur teaching pls don't stop❤️
I don't have to even read my book after this thanks a ton!😁 You Saviour!
Thank you so much :)
@@AmulsAcademy ❤️❤️❤️
Thank you so much dear.....it helps me a lot....
Thanks for telling it's my practical
You're a good tutor, thanks a lot
Thanku so much ma'am you are amazing explaination each and every topic thanku👌👌👌👌👌 so much again ❤️❤️❤️
Pleasure 😊❤️
Great Explanation, able to understand everything
Thank you 😊
Explaination is sooo clear! thank you so much
nice block of instructions. Thank you.
Mam thanks a lot I wanted this video so much ❤️❤️❤️
Most welcome 😊
@@AmulsAcademy mam why did you use )) cant we just use ) in the first line
VERY GOOD CHANEL , WE LEARN FROM YOU A LOT BLESSING YOU.
this saves my lifeeeee thanks
what a explaination! wah....superb.....
Thanks a ton, ma'am! Helped a lot! You got a new subscriber, lol :)
Really good. Understand very well
SUPER EVER EXPLANATION EVER MAM🤗🤗🤗
Your Exaplantion is Awesome , Thank you
Cute explaination, beautiful, You got a new subscriber 😜 Thank you soo much ❤️
Didi you are great ......
Thanks a lot 😊
Its cool concept. But, i understand some what. then thought i
thank u sister..
Good job...
Keep it up
An Last thanks for this
Nice to meet you 🎉
Well explained 😇👏....this is all in 11th class book right? I know as i was just studying it...by the way thank u😊
I didn't knew that :)
Yes
Guys plz tell me the name of the book 📚😅
@@offshoring8197 computer science with python by preeti Arora class 11
Tq ma'am this video helps me a lot🙏🙏
By the way I am in love with your voice🤣
Very well explained
Thank you very much ma'am 🙏👏👌
Thank you so much!!🙂😊
thank you so much ,
this video really helped me a lot
Good explanation !
Thank you so much.I've learnt the basic of the pattern😃
Tnq so much mam❤️❤️ do more videos on python
Mam tell us the logic so that we can do it ourselves...btw your explanation is nice
i like your teaching that was excellent😇.
please do more videos of python 🙂
Wonderful explanation thank you madam
Amazing explanation
Good explanation
This is a more clear solution to the second pattern:
num = int(input("enter rows number: "))
for row in range(num):
for col in range(row+1):
print(row+1, end= " ")
row -= 1
print()
Thanks bro ✌️
Welcome 👍
Thank you so much madam.
I am watching this on exam day 😅😅
Checkout the following playlist for more pattern printing solutions :
ua-cam.com/play/PLYdadXLk2qEcbudK9tDdmjmzOvm8sUnUJ.html
Thank you mam 😊😊
Most welcome 😊
Thank you so much❤
Mam the program at 21:22 is not working 😫😫
Thank you so much...It is very useful and also understandable.😊
My second pattern is a little bit different.
n = 4
for i in range(n):
for j in range(i+1):
print((i+1)-j, end=' ')
print()
------------------------------------------------------------------------------
My pattern from 15:20.
n = 4
for i in range(n):
for j in range(i+1):
print(n=j, end=' ')
n -= 1
print()
Thanks
Welcome :)
Great Vd :)
Very very nice explain mam I understood fully ❤️
Thanks!
Thank you mam🙏
Clear voice fs
iove you amulya
can you tell me the course you took for knowing this, if i take the same course i will be as good as you
So sweet voice maam😍
Thank you :)
It in 8 th class also i am in 8 one and tomorrow is my computer practical
and in case of left hand side triangle u cn make it an equivalent by not givong space between the print
Yhanks
Which app you are using for screen recording
Thanks a lot
Can u put a video for finding n Catalan numbers plz??
Will try 😊
i love your voice
thank you madam
I am glad to know how can we build an app? Can u answer?
you can use kivi for building mobile app using python, tkinter for desktop application and django/flask for web application
n = int(input("enter a number :"))
for i in range(2,n+1):
for j in range(1,i):
print(i-j,end="")
print()
out put is done. is this methode correct??
Mam, what's your age:)
BTW , NICE EXPLANATION
N:❌️
YEN:✅️
When we depend on j we can take any I and vise vesrsa Is true mam
Thank you mammmm...
Thanks for clearing all doubts related to pattern related programs 🔥🔥🔥💯
Nice
Thank you mam
how do i program the proceeding and the succeeding of a number?
Can we reverse the order of the row in 4th example
mam can you teach this same method using while loops....?
Mam can u explain hollow triangle number pattern