Python Pattern Programs - Printing Numbers in Right Triangle Shape 2 | Column wise

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

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

  • @keshavmanuja1348
    @keshavmanuja1348 3 года назад +1

    Fall in love with your voice and method of teaching...

  • @srikarrar261
    @srikarrar261 5 лет назад +5

    Very well explained mam. I tried this in my own and I have got all the ways but the problem is I cannot implemented in program . After watching this video I've got a clarity in solving these types of problems

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

    I become a fan of your teaching , the way you teach the way you explain
    Truly amazing
    This is the best channel for python...
    Keep it up...🙏🙏😍😍

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

    r=0
    for i in range (1,6):
    print(i,end=' ')
    s=4
    m=i
    for j in range (r):
    m+=s
    print(m,end=' ')
    s-=1
    print()
    r+=1
    simple!!:)

  • @kunallimboo2395
    @kunallimboo2395 5 лет назад +3

    Shortest and easiest way of learning ☺️

  • @adapalaanilkumaranilkumar1871
    @adapalaanilkumaranilkumar1871 3 года назад +1

    Excellent way of teaching mam

  • @premkumarms7607
    @premkumarms7607 5 лет назад +2

    Really good effort for this pattern.

  • @matampavankumar559
    @matampavankumar559 5 лет назад +3

    Super and clear explanation

  • @abhisheksonkar3366
    @abhisheksonkar3366 5 лет назад +1

    Superb explanation ma'am . 👍👍

  • @anshumanpatel3327
    @anshumanpatel3327 5 лет назад +2

    Brilliant 🙏🙏

  • @PraveenKumar-gd1tx
    @PraveenKumar-gd1tx 4 года назад

    Really understandable and sir I have a question if I give input as 3 it has to print
    123
    45
    6
    And if the value is more that 10 it has to repeat form 1 again sir can you suggest me if any code is there like this

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

    can u explain how it get in two inputs like n1=10, rows=5

  • @AmitShYT
    @AmitShYT 3 года назад

    Very khatarnak pattern

  • @arpitkesarwani6123
    @arpitkesarwani6123 5 лет назад +1

    Nice mam

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

    Please send New programs

  • @lakshminarayana3201
    @lakshminarayana3201 5 лет назад +1

    thank you

  • @subramanyaomm-d5q
    @subramanyaomm-d5q Год назад

    n=5
    for row in range(1,n+1):
    for col in range(row):
    High_value=0
    for Num_Times in range(col):
    High_value=High_value+n-Num_Times
    if col%2==0:
    print(High_value+row-col,end=" ")
    else:
    print(High_value+n-row+1,end=" ")
    print()

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