Number Pattern | Part 1 | Python Pattern Programs

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ก.พ. 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

ความคิดเห็น •

  • @muneshSharmagmailcom
    @muneshSharmagmailcom 3 ปีที่แล้ว

    Checkout the following playlist for more pattern printing solutions :
    th-cam.com/play/PLYdadXLk2qEcbudK9tDdmjmzOvm8sUnUJ.html

  • @ShivayeKaushik
    @ShivayeKaushik 2 ปีที่แล้ว +2

    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

  • @sheetalyadav9661
    @sheetalyadav9661 ปีที่แล้ว +3

    i like that you explained in a way that's easy to understand.

  • @rashid_iiitd
    @rashid_iiitd 3 ปีที่แล้ว +3

    Since I found this channel I fell in love with pattern printing programs.
    Itna aacha kaise padhate ho ma'am

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว

      Thank you 😊❤️

    • @mrnobody3903
      @mrnobody3903 3 ปีที่แล้ว

      th-cam.com/video/pbePbEBEhbk/w-d-xo.html
      Easiest Explanation ever ❤ please visit atleast once it clear all my doubts

  • @honeyshukla3747
    @honeyshukla3747 ปีที่แล้ว +1

    Honestly !
    You explaining skills are best

  • @nonoobott8602
    @nonoobott8602 4 ปีที่แล้ว +7

    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

  • @otakubuzz4436
    @otakubuzz4436 3 ปีที่แล้ว +17

    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!

  • @kunalchauhan7733
    @kunalchauhan7733 3 ปีที่แล้ว +7

    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!

  • @MRCRAZY-wm4ln
    @MRCRAZY-wm4ln 4 ปีที่แล้ว +25

    fall in love with coding with you mam, thanks for providing us this quality of education....love you mam

    • @AmulsAcademy
      @AmulsAcademy  4 ปีที่แล้ว +4

      Glad to hear that :)

    • @mrnobody3903
      @mrnobody3903 3 ปีที่แล้ว

      th-cam.com/video/pbePbEBEhbk/w-d-xo.html
      Easiest Explanation ever ❤

  • @dhruvchaturvedi7197
    @dhruvchaturvedi7197 3 ปีที่แล้ว +2

    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

  • @Knockout_music_143
    @Knockout_music_143 4 ปีที่แล้ว +15

    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

  • @randri17
    @randri17 2 ปีที่แล้ว +2

    I really thank you for helping me in doing my lecture assignments, thanx🥰

  • @aakratisingh5215
    @aakratisingh5215 11 หลายเดือนก่อน +25

    I am watching this on the practical day 😂😅 wish me luck 🤞🏻

  • @MUHAMMADNASIR-tv2jx
    @MUHAMMADNASIR-tv2jx 2 ปีที่แล้ว +5

    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.

  • @anandkumar-cl7dd
    @anandkumar-cl7dd 2 ปีที่แล้ว +17

    If you tell us the logic behind number and star patterns that would be helpful 👍 one simple logic to write all patters

  • @kishore1904
    @kishore1904 4 ปีที่แล้ว +5

    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.

  • @saiparnam7570
    @saiparnam7570 3 ปีที่แล้ว +8

    It's very easy to write a code when we follow your tips,tricks ❤️❤️

  • @saikishore3067
    @saikishore3067 2 ปีที่แล้ว

    Great explanation mam,understand the tricks very easily when u are saying.

  • @sandeepKumar-sw3bx
    @sandeepKumar-sw3bx 2 ปีที่แล้ว +2

    Absolutely very good information
    And your way of explanation is simply super mam

  • @StudyWithDivi
    @StudyWithDivi 6 หลายเดือนก่อน

    Clear explanation ❤ thank you so much sis😊

  • @cartonskids3291
    @cartonskids3291 ปีที่แล้ว +1

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

  • @saichandupinnam
    @saichandupinnam 3 ปีที่แล้ว

    Your Voice is so Sweet.... 🥰 take it as a Compliment....
    Thanks alot Amulya

  • @singaramashok
    @singaramashok ปีที่แล้ว

    Very good teachingin a simplified manner

  • @NaveenVarmaK
    @NaveenVarmaK 2 ปีที่แล้ว

    wahhh Thanku soo much. I am learning a lot from your channel.

  • @wolfpack9873
    @wolfpack9873 4 ปีที่แล้ว +3

    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!

    • @AmulsAcademy
      @AmulsAcademy  4 ปีที่แล้ว

      Thank you so much :)

    • @wolfpack9873
      @wolfpack9873 4 ปีที่แล้ว

      @@AmulsAcademy ❤️❤️❤️

  • @AyushSharma-be4kh
    @AyushSharma-be4kh 3 ปีที่แล้ว +4

    Thank you very much. Really appreciate the way you make someone understand the concepts.

  • @wayneLam18
    @wayneLam18 2 ปีที่แล้ว +2

    You're a good tutor, thanks a lot

  • @techinfo2591
    @techinfo2591 4 ปีที่แล้ว +1

    I am big fan for your explanation

  • @ishangiwantha7137
    @ishangiwantha7137 3 ปีที่แล้ว +1

    Explaination is sooo clear! thank you so much

  • @Krishhh.....
    @Krishhh..... 3 ปีที่แล้ว +1

    Thanks for telling it's my practical

  • @SanthoshKumar-gm3td
    @SanthoshKumar-gm3td 2 ปีที่แล้ว

    Its cool concept. But, i understand some what. then thought i
    thank u sister..

  • @stech3696
    @stech3696 3 ปีที่แล้ว +2

    Thanku so much ma'am you are amazing explaination each and every topic thanku👌👌👌👌👌 so much again ❤️❤️❤️

  • @akritimehta0454
    @akritimehta0454 4 ปีที่แล้ว +48

    Well explained 😇👏....this is all in 11th class book right? I know as i was just studying it...by the way thank u😊

    • @AmulsAcademy
      @AmulsAcademy  4 ปีที่แล้ว +4

      I didn't knew that :)

    • @blabla-hb4fe
      @blabla-hb4fe 4 ปีที่แล้ว

      Yes

    • @offshoring8197
      @offshoring8197 4 ปีที่แล้ว +1

      Guys plz tell me the name of the book 📚😅

    • @kaaju_bite1809
      @kaaju_bite1809 4 ปีที่แล้ว +1

      @@offshoring8197 computer science with python by preeti Arora class 11

    • @tgthirumalesh5884
      @tgthirumalesh5884 3 ปีที่แล้ว +1

      Tq ma'am this video helps me a lot🙏🙏

  • @alishapadhy7691
    @alishapadhy7691 2 ปีที่แล้ว

    Thank you so much dear.....it helps me a lot....

  • @prakashturlapati8439
    @prakashturlapati8439 3 ปีที่แล้ว

    Your Exaplantion is Awesome , Thank you

  • @sohailshaikh3269
    @sohailshaikh3269 3 ปีที่แล้ว +1

    Great Explanation, able to understand everything

  • @atlasfoodatlasfood6430
    @atlasfoodatlasfood6430 2 ปีที่แล้ว

    VERY GOOD CHANEL , WE LEARN FROM YOU A LOT BLESSING YOU.

  • @ameerabdul5444
    @ameerabdul5444 3 ปีที่แล้ว

    what a explaination! wah....superb.....

  • @jameswatkins1297
    @jameswatkins1297 ปีที่แล้ว

    nice block of instructions. Thank you.

  • @keshavofficial4542
    @keshavofficial4542 3 ปีที่แล้ว

    SUPER EVER EXPLANATION EVER MAM🤗🤗🤗

  • @sudiptacoachingcentre4118
    @sudiptacoachingcentre4118 2 ปีที่แล้ว

    Really good. Understand very well

  • @balramchahuhan7638
    @balramchahuhan7638 6 หลายเดือนก่อน

    Nice to meet you 🎉

  • @MuhammadAli-yw8ey
    @MuhammadAli-yw8ey 2 ปีที่แล้ว

    By the way I am in love with your voice🤣

  • @purvangipatel6601
    @purvangipatel6601 4 ปีที่แล้ว +2

    Didi you are great ......

  • @satishghadage7563
    @satishghadage7563 8 หลายเดือนก่อน

    Very well explained

  • @yuktikashyap3374
    @yuktikashyap3374 3 ปีที่แล้ว

    thank you so much ,
    this video really helped me a lot

  • @crewmate3031
    @crewmate3031 4 ปีที่แล้ว +2

    Mam thanks a lot I wanted this video so much ❤️❤️❤️

    • @AmulsAcademy
      @AmulsAcademy  4 ปีที่แล้ว

      Most welcome 😊

    • @godx3558
      @godx3558 3 ปีที่แล้ว

      @@AmulsAcademy mam why did you use )) cant we just use ) in the first line

  • @Trinadhgeti
    @Trinadhgeti 2 ปีที่แล้ว

    Thank you very much ma'am 🙏👏👌

  • @anushabotla8293
    @anushabotla8293 2 ปีที่แล้ว

    Tnq so much mam❤️❤️ do more videos on python

  • @PurbaChakraborty-um8wt
    @PurbaChakraborty-um8wt ปีที่แล้ว

    Mam tell us the logic so that we can do it ourselves...btw your explanation is nice

  • @Madhusunandha
    @Madhusunandha 2 ปีที่แล้ว

    Wonderful explanation thank you madam

  • @saikiransayamoni5860
    @saikiransayamoni5860 2 ปีที่แล้ว +1

    i like your teaching that was excellent😇.
    please do more videos of python 🙂

  • @barkatshaik4184
    @barkatshaik4184 3 ปีที่แล้ว

    Cute explaination, beautiful, You got a new subscriber 😜 Thank you soo much ❤️

  • @mahishafarzana5844
    @mahishafarzana5844 3 ปีที่แล้ว

    Thank you so much.I've learnt the basic of the pattern😃

  • @tanisheeesh
    @tanisheeesh 2 ปีที่แล้ว

    Thanks a ton, ma'am! Helped a lot! You got a new subscriber, lol :)

  • @_Elfaro
    @_Elfaro 2 ปีที่แล้ว

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

  • @taywu2616
    @taywu2616 2 ปีที่แล้ว

    this saves my lifeeeee thanks

  • @abhaypratapmishra1817
    @abhaypratapmishra1817 3 ปีที่แล้ว

    Good job...
    Keep it up
    An Last thanks for this

  • @madhukalsani
    @madhukalsani 2 ปีที่แล้ว

    Amazing explanation

  • @Bread-vk8fl
    @Bread-vk8fl 3 ปีที่แล้ว

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

  • @prkhub
    @prkhub 2 ปีที่แล้ว

    Thank you so much!!🙂😊

  • @Srijafashions
    @Srijafashions 2 ปีที่แล้ว

    Good explanation

  • @NeelimaSollangi
    @NeelimaSollangi ปีที่แล้ว

    Thank you so much madam.

  • @deepakadhiraaijog7387
    @deepakadhiraaijog7387 2 ปีที่แล้ว

    Good explanation !

  • @philip7483
    @philip7483 3 ปีที่แล้ว +4

    Thank you so much...It is very useful and also understandable.😊

  • @gowthamm2858
    @gowthamm2858 3 ปีที่แล้ว

    Very very nice explain mam I understood fully ❤️

  • @kaaju_bite1809
    @kaaju_bite1809 4 ปีที่แล้ว +3

    Thanks bro ✌️

  • @sambhajikhade6385
    @sambhajikhade6385 2 ปีที่แล้ว

    Thank you so much❤

  • @Gobinda1200
    @Gobinda1200 4 ปีที่แล้ว +2

    Thank you mam 😊😊

  • @jaimon901
    @jaimon901 8 หลายเดือนก่อน

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

  • @chinmoychakraborty8046
    @chinmoychakraborty8046 4 ปีที่แล้ว +2

    So sweet voice maam😍

  • @reenasingh2253
    @reenasingh2253 3 ปีที่แล้ว +1

    Mam, what's your age:)
    BTW , NICE EXPLANATION

  • @ady7d77
    @ady7d77 ปีที่แล้ว

    can you tell me the course you took for knowing this, if i take the same course i will be as good as you

  • @rachitkumar4786
    @rachitkumar4786 3 ปีที่แล้ว +1

    Mam the program at 21:22 is not working 😫😫

  • @Hk00794
    @Hk00794 2 ปีที่แล้ว

    iove you amulya

  • @siddharthadestroyer7155
    @siddharthadestroyer7155 3 ปีที่แล้ว

    and in case of left hand side triangle u cn make it an equivalent by not givong space between the print

  • @Subhrajit033
    @Subhrajit033 2 ปีที่แล้ว

    Thank you mam🙏

  • @aryansingh-de1ox
    @aryansingh-de1ox ปีที่แล้ว +1

    Clear voice fs

  • @rahulnikam1279
    @rahulnikam1279 2 ปีที่แล้ว

    Great Vd :)

  • @MayankSingh-ow9dc
    @MayankSingh-ow9dc 4 หลายเดือนก่อน

    I am watching this on exam day 😅😅

  • @RiyaRana-xk9kn
    @RiyaRana-xk9kn ปีที่แล้ว +1

    It in 8 th class also i am in 8 one and tomorrow is my computer practical

  • @MonuSingh-mz3qz
    @MonuSingh-mz3qz 4 ปีที่แล้ว +2

    Thanks

  • @dharmamkumar4513
    @dharmamkumar4513 3 ปีที่แล้ว

    Thanks a lot

  • @blabla-hb4fe
    @blabla-hb4fe 4 ปีที่แล้ว +2

    I am glad to know how can we build an app? Can u answer?

    • @manishbhardwaj5880
      @manishbhardwaj5880 3 ปีที่แล้ว

      you can use kivi for building mobile app using python, tkinter for desktop application and django/flask for web application

  • @gayathri-8-i6s
    @gayathri-8-i6s 3 ปีที่แล้ว +1

    Can u put a video for finding n Catalan numbers plz??

  • @peripeciasdeldestino2630
    @peripeciasdeldestino2630 2 ปีที่แล้ว

    Thanks!

  • @ishangiwantha7137
    @ishangiwantha7137 3 ปีที่แล้ว

    i love your voice

  • @dr.b.ridhumikabalakrishnam780
    @dr.b.ridhumikabalakrishnam780 2 ปีที่แล้ว

    Which app you are using for screen recording

  • @ashutoshupadhyay8885
    @ashutoshupadhyay8885 3 ปีที่แล้ว +1

    Thanks for clearing all doubts related to pattern related programs 🔥🔥🔥💯

  • @letslearn1203
    @letslearn1203 4 ปีที่แล้ว +1

    In this way explain in variable..

  • @rajavardhan8641
    @rajavardhan8641 3 ปีที่แล้ว

    When we depend on j we can take any I and vise vesrsa Is true mam

  • @nithinchitra1570
    @nithinchitra1570 3 ปีที่แล้ว

    Thank you mammmm...

  • @ruwanhag2499
    @ruwanhag2499 2 ปีที่แล้ว +1

    Yhanks

  • @timon1804
    @timon1804 2 ปีที่แล้ว

    mam can you teach this same method using while loops....?

  • @archillesreyes8822
    @archillesreyes8822 2 ปีที่แล้ว +1

    how do i program the proceeding and the succeeding of a number?

  • @MALAYALIKKARAN
    @MALAYALIKKARAN 3 หลายเดือนก่อน

    Best way of explanation. Target#python developer. Oct2024

  • @anshikasingh4289
    @anshikasingh4289 2 ปีที่แล้ว

    Mam range function mein index ko reverse karne ke liye jo last vala -1 use hua hai *step* ke liye uska kya matlab hai wo -1 ka matlab samaj nhi aa raha hai. Please bataiye🙏

  • @RahulPandey-vi4iu
    @RahulPandey-vi4iu ปีที่แล้ว

    Can we reverse the order of the row in 4th example

  • @edaanhsirk
    @edaanhsirk 3 ปีที่แล้ว

    thank you madam

  • @saivikas7032
    @saivikas7032 4 ปีที่แล้ว +2

    Mam,In the case of reverse triangle pattern after creating spaces how the same code written for right angled triangle is same.i didn't understand reverse triangle pattern. Could u please make another video for reverse triangle pattern explaining clearly.

    • @AmulsAcademy
      @AmulsAcademy  4 ปีที่แล้ว

      After printing space we need to take the for loop for numbers.
      In the pattern you can see you need same set of numbers, here we are just changing the shape of the pattern, number set is same that's why we are using same code :)