Number Pattern | Part 1 | Python Pattern Programs

preview_player
Показать описание
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
Рекомендации по теме
Комментарии
Автор

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

MRCRAZY-wmln
Автор

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

ShivayeKaushik
Автор

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

rashid_iiitd
Автор

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

sheetalyadav
Автор

Honestly !
You explaining skills are best

honeyshukla
Автор

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!

otakubuzz
Автор

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!

kunalchauhan
Автор

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

anandkumar-cldd
Автор

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.

MUHAMMADNASIR-tvjx
Автор

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

randri
Автор

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

dhruvchaturvedi
Автор

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.

kishore
Автор

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

nonoobott
Автор

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

AyushSharma-bekh
Автор

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

saiparnam
Автор

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

sandeepKumar-swbx
Автор

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

akritimehta
Автор

Clear explanation ❤ thank you so much sis😊

StudyWithDivi
Автор

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

saikishore
Автор

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

Knockout_music_