Printing Stars "*" in Pyramid Shape | Triangle | Python Pattern Program

  Рет қаралды 164,985

ProgramsAndMe

ProgramsAndMe

Күн бұрын

Пікірлер: 105
@rashichaudhry5954
@rashichaudhry5954 Жыл бұрын
very well explained! saw so many videos but this was the easiest to understand :)
@beckypang5251
@beckypang5251 2 жыл бұрын
excellent explanation, not only for this questions but also help me to do other printing star pattern questions
@twister1182
@twister1182 5 ай бұрын
Explained in a very simple way. Thanks👍
@programsandme
@programsandme 5 ай бұрын
Most welcome 😊
@Hi_kartik
@Hi_kartik 2 жыл бұрын
n = 5 i = 1 while i
@shra7an
@shra7an 11 ай бұрын
Wah bete mauj kardi.
@shashankrai6349
@shashankrai6349 2 жыл бұрын
loved it ! thank u for teaching us !
@TolgacengizhanÇağlar
@TolgacengizhanÇağlar Жыл бұрын
Ty bro, was about to give up ❤
@VenkatasaiEppakayala
@VenkatasaiEppakayala 10 ай бұрын
This is the short code that I have never seen in another videos and websites
@Fuka_Hua
@Fuka_Hua 2 жыл бұрын
this was more good than our teacher
@KishoreKumarV-ky6sh
@KishoreKumarV-ky6sh 8 ай бұрын
Excellent explanation of logic the best channel for learning about patterns
@ievgendergausov2867
@ievgendergausov2867 4 ай бұрын
Thank you very much 👍 very easy and simple
@programsandme
@programsandme 4 ай бұрын
You are welcome 😊
@adithyankbabu2209
@adithyankbabu2209 5 ай бұрын
Thanks for everything mam😌😌👌
@programsandme
@programsandme 5 ай бұрын
Most welcome :)
@chandrasekars8904
@chandrasekars8904 6 ай бұрын
This is really an excellent channel on Python like "techie talkee"
@programsandme
@programsandme 5 ай бұрын
Thank you :)
@lalitupadhyay7067
@lalitupadhyay7067 Жыл бұрын
Wow th way of explaining pyramid star very nice
@DigB_Gamer
@DigB_Gamer 11 ай бұрын
Great explanation with a beautiful voice.Thanks
@talhadawar8317
@talhadawar8317 8 ай бұрын
Thnks mam what a wonderful and simple explanation ❤
@pannagabm2100
@pannagabm2100 Жыл бұрын
Thank you mam.. This is the best video i got ❤
@sekharbabusaripalli181
@sekharbabusaripalli181 Жыл бұрын
Very Good explanation sister 😊
@MALAYALIKKARAN
@MALAYALIKKARAN 2 ай бұрын
Is it amulyas channel.Didnt know.Gonna subscribe
@programsandme
@programsandme 2 ай бұрын
Thank you :)
@prettypretty05
@prettypretty05 Жыл бұрын
You are the best ❤
@tanushreegharami227
@tanushreegharami227 Жыл бұрын
You got one more subscriber 😊 Thanks very helpful
@AnuragS10
@AnuragS10 Ай бұрын
To print the odd number of stars (1,3,5,7,9...) with space between stars: for i in range(n): for j in range(n-i-1): print(" ", end=" ") for j in range(2*i+1): print("*", end=" ") print()
@1karachii
@1karachii Жыл бұрын
Amazingly Explained thanks
@GuitaristAlok
@GuitaristAlok Жыл бұрын
like your videos and voice tooo👍❣
@LearnComputerWithAwais
@LearnComputerWithAwais Жыл бұрын
Awesome Video and Good Explanation
@abubakarhamad8214
@abubakarhamad8214 2 жыл бұрын
Simple explanation
@siennaharris1380
@siennaharris1380 3 жыл бұрын
Very helpful tutorial
@programsandme
@programsandme 3 жыл бұрын
thank you 😊
@umeshsingh-nx1zq
@umeshsingh-nx1zq 2 жыл бұрын
what an awesome explanation
@mac2857
@mac2857 2 жыл бұрын
your voice is very nice
@dyotakgiri79
@dyotakgiri79 Жыл бұрын
What a nice explanation!!!
@ТомирисКайрова-ъ5ь
@ТомирисКайрова-ъ5ь 3 ай бұрын
ты самая лучшая женщина на свете
@sreedharlikit8966
@sreedharlikit8966 2 жыл бұрын
Hats off super mam
@dineshreddynarsing4788
@dineshreddynarsing4788 2 жыл бұрын
Nice explanation
@nireekshangoddugorla7921
@nireekshangoddugorla7921 2 жыл бұрын
good explanation madam
@dhanashrichitukane1121
@dhanashrichitukane1121 7 ай бұрын
Thanks ❤ dear
@programsandme
@programsandme 5 ай бұрын
Welcome :)
@Vaibhavi_Nayak
@Vaibhavi_Nayak 2 жыл бұрын
Loved your explanation..
@medarametlapraveen
@medarametlapraveen 2 жыл бұрын
i developed a very simple code for this n=int(input("no of rows required: ")) m=n-2 for i in range(1,n): print(' '*m,end='') print('x '*i) m=m-1
@scbdfbhgjkhlxzcfbdjhkls6912
@scbdfbhgjkhlxzcfbdjhkls6912 2 жыл бұрын
it prints 1 layer less
@MaahirCodes
@MaahirCodes Жыл бұрын
its incorect 1) The Space is not printed properly( It only prints 2 spaces per row 2) One layer less Fixed Code: n = int(input("No. of rows required: ")) for i in range(1,n+1): m = n-i print("-"*m, end="") print("x "*i) Sol 1)It should be m - i as for 5 rows the first row needs 4 spaces and thus, in the range 1,6(1,n+1) starting value of i will be 1 hence m-i(1) = 4 this fixes the space problem Sol 2) The range must be n+1 as the value of the range is start,end+1 hence if rows inputed is 5, for 5 rows a value of 1,6( n + 1)
@trueAKspeaks
@trueAKspeaks Жыл бұрын
Atleast you tried and most importantly, it works. Just one row lesser.
@holy-crusader6139
@holy-crusader6139 Жыл бұрын
bro thanks very good video
@joyprokash4013
@joyprokash4013 Жыл бұрын
thanks a lot
@firesevn1133
@firesevn1133 2 жыл бұрын
thankyou all doubt clear
@HapSadedits
@HapSadedits 4 ай бұрын
is it compulsory to take j can we use other alphabets
@programsandme
@programsandme 4 ай бұрын
Yes you can :)
@rsnda974
@rsnda974 9 ай бұрын
Excellent I understood please help in fubunocci
@185PerCentJuice
@185PerCentJuice 4 жыл бұрын
Is it possible to print an isosceles triangle?
@programsandme
@programsandme 4 жыл бұрын
Give me the pattern :)
@MaahirCodes
@MaahirCodes Жыл бұрын
this is an iscosceles already bro
@De.Raizel
@De.Raizel Жыл бұрын
Thanks
@palakgrover9925
@palakgrover9925 2 жыл бұрын
Which platform is she using here?
@amariealfaro1365
@amariealfaro1365 2 жыл бұрын
Hello newbie here maam. it show the full pyramid and the right.. what about the left? Thank u
@MaahirCodes
@MaahirCodes Жыл бұрын
See, the code in the video is unnecesarily long n = int(input("No. of rows required: ")) for i in range(1,n+1): m = n-i print("-"*m, end="") print("x "*i) Try this
@noushadkhan68
@noushadkhan68 2 жыл бұрын
apka dhanyawaad
@ylmazoncu5693
@ylmazoncu5693 Жыл бұрын
Thank you!
@bdof6528
@bdof6528 3 жыл бұрын
U voice match with amulya academy girl?
@programsandme
@programsandme 3 жыл бұрын
Yeah.. because this is my another channel 😊
@bdof6528
@bdof6528 3 жыл бұрын
@@programsandme congrats ❤️🎉 U are too good in programing 🔥
@viratstatus1019
@viratstatus1019 2 жыл бұрын
@@programsandme 😂
@hi.996
@hi.996 Жыл бұрын
​@@bdof6528 🗿
@05c4_sharmila5
@05c4_sharmila5 Жыл бұрын
😂😂😂
@vamshithota4919
@vamshithota4919 2 жыл бұрын
U voice is like amulya academy only
@haribol6076
@haribol6076 2 жыл бұрын
This is Amulya academy second KZbin channel only
@mac2857
@mac2857 2 жыл бұрын
why do indians say 'only' after every sentence
@adarshkhatri993
@adarshkhatri993 3 жыл бұрын
Good explanation 😁
@programsandme
@programsandme 2 жыл бұрын
Thank you 😊
@williamjayaraj2244
@williamjayaraj2244 2 жыл бұрын
Thank you.
@surajnawghare2065
@surajnawghare2065 4 жыл бұрын
Great
@programsandme
@programsandme 4 жыл бұрын
Thank you :]
@sarubet8725
@sarubet8725 2 жыл бұрын
Can we do it without input command?
@MaahirCodes
@MaahirCodes Жыл бұрын
It is possible but then yuuou can only get the pyramid for aa fixed value, ie cannot be inputed by the user
@vamshithota4919
@vamshithota4919 2 жыл бұрын
Please explain hollow pymarid
@MaahirCodes
@MaahirCodes Жыл бұрын
# Generating Hollow Pyramid Pattern Using Stars row = int(input('Enter number of rows required: ')) for i in range(row): for j in range(row-i): print(' ', end='') # printing space required and staying in same line for j in range(2*i+1): if j==0 or j==2*i or i==row-1: print('*',end='') else: print(' ', end='') print() # printing new line
@akashdeep_x464
@akashdeep_x464 Жыл бұрын
Wow
@easternwizard9869
@easternwizard9869 Жыл бұрын
i have an doubt
@lm2thed142
@lm2thed142 10 ай бұрын
this madea prarralelogram for me? x= int(input("please enter the amount of rows you would like: ")) for i in range(x): for j in range(x-i-1): print(" ",end="") for k in range(x+1): print("#",end=" ") print()
@sahilvats5680
@sahilvats5680 Жыл бұрын
👍👍👍👍
@aishwarydandale6041
@aishwarydandale6041 2 жыл бұрын
ur voice ❤️❤️❤️❤️❤️❤️
@Sachin-yo3jw
@Sachin-yo3jw Жыл бұрын
l=[] for i in range(1,9,2): l.append('*'*i) for j in range(0,len(l)): b=len(l[-1])-len(l[j]) c=int(b/2) l[j]=" "*c+l[j]+" "*c for p in l: print(p)
@vishnukothapally9360
@vishnukothapally9360 Жыл бұрын
Ur amulya academi right
@VinothKumar-ej4nn
@VinothKumar-ej4nn 3 жыл бұрын
Not proper o/p ... It's coming EOFerror:
@programsandme
@programsandme 2 жыл бұрын
Give me the program, I will check 😊
@mashapoguajay3322
@mashapoguajay3322 2 жыл бұрын
Thanks madam 😊
@digambar6191
@digambar6191 2 жыл бұрын
Thnx mam
@VinayKumar-ek5el
@VinayKumar-ek5el 2 жыл бұрын
Mera issi code se kuch or hi print kr rhaa h
@aperson6405
@aperson6405 10 ай бұрын
goat
@sreeramojusingamalai7472
@sreeramojusingamalai7472 2 жыл бұрын
Hi Amulya ji
@XILK_525
@XILK_525 Жыл бұрын
South Indian
@bilalraza8139
@bilalraza8139 3 жыл бұрын
Jab koi jyada English bolta hai To mera dil karta hai... English me video bana rahe ho Or mujhe kuch ghanta samajh nahi aara
@vaidikayadav294
@vaidikayadav294 10 ай бұрын
Bro its an not yan
@nwaarkristianramos351
@nwaarkristianramos351 6 ай бұрын
😂😂😂
@ppd_85
@ppd_85 7 ай бұрын
yennnnnnnnnnnnnnnnnnnnnn
@sinx7472
@sinx7472 Жыл бұрын
n is pronounced as yen XD
@praneethd9436
@praneethd9436 9 ай бұрын
Good explanation
@parmarfamily6311
@parmarfamily6311 Жыл бұрын
Usefull
@MuhammadAshrafAshraf-mb1qi
@MuhammadAshrafAshraf-mb1qi Жыл бұрын
Thank you!
$1 vs $500,000 Plane Ticket!
12:20
MrBeast
Рет қаралды 122 МЛН
The Lost World: Living Room Edition
0:46
Daniel LaBelle
Рет қаралды 27 МЛН
Solve any Star Pattern program in Python
18:44
Simply Coding
Рет қаралды 1 МЛН
Special Programs in C − Pyramid of Stars
11:06
Neso Academy
Рет қаралды 903 М.
Python Pattern Program - Printing Stars in Pyramid Shape Using while loop
16:14
How to solve any Star Pattern Program
18:47
Simply Coding
Рет қаралды 1,2 МЛН
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,3 МЛН
Алгоритмы на Python 3. Лекция №1
1:20:50
Тимофей Хирьянов
Рет қаралды 5 МЛН
How to solve Square and Hollow pattern programs in Python
17:29
Simply Coding
Рет қаралды 99 М.
Solve Any Pattern Question With This Trick!
57:20
Kunal Kushwaha
Рет қаралды 2,5 МЛН
How to Code (almost) Any Feature
9:48
DaFluffyPotato
Рет қаралды 712 М.
$1 vs $500,000 Plane Ticket!
12:20
MrBeast
Рет қаралды 122 МЛН