very well explained! saw so many videos but this was the easiest to understand :)
@beckypang52512 жыл бұрын
excellent explanation, not only for this questions but also help me to do other printing star pattern questions
@shravanacharya59879 ай бұрын
Wah bete mauj kardi.
@twister11823 ай бұрын
Explained in a very simple way. Thanks👍
@programsandme3 ай бұрын
Most welcome 😊
@KishoreKumarV-ky6sh6 ай бұрын
Excellent explanation of logic the best channel for learning about patterns
@VenkatasaiEppakayala8 ай бұрын
This is the short code that I have never seen in another videos and websites
@MALAYALIKKARAN22 күн бұрын
Is it amulyas channel.Didnt know.Gonna subscribe
@programsandme14 күн бұрын
Thank you :)
@chandrasekars89045 ай бұрын
This is really an excellent channel on Python like "techie talkee"
@programsandme3 ай бұрын
Thank you :)
@lalitupadhyay7067 Жыл бұрын
Wow th way of explaining pyramid star very nice
@DigB_Gamer10 ай бұрын
Great explanation with a beautiful voice.Thanks
@ievgendergausov28672 ай бұрын
Thank you very much 👍 very easy and simple
@programsandme2 ай бұрын
You are welcome 😊
@TolgacengizhanÇağlar Жыл бұрын
Ty bro, was about to give up ❤
@ТомирисКайрова-ъ5ьАй бұрын
ты самая лучшая женщина на свете
@sekharbabusaripalli181 Жыл бұрын
Very Good explanation sister 😊
@Fuka_Hua Жыл бұрын
this was more good than our teacher
@talhadawar83176 ай бұрын
Thnks mam what a wonderful and simple explanation ❤
@shashankrai63492 жыл бұрын
loved it ! thank u for teaching us !
@abubakarhamad82142 жыл бұрын
Simple explanation
@LearnComputerWithAwais Жыл бұрын
Awesome Video and Good Explanation
@adithyankbabu22093 ай бұрын
Thanks for everything mam😌😌👌
@programsandme3 ай бұрын
Most welcome :)
@prettypretty0510 ай бұрын
You are the best ❤
@dineshreddynarsing4788 Жыл бұрын
Nice explanation
@medarametlapraveen2 жыл бұрын
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
@scbdfbhgjkhlxzcfbdjhkls69122 жыл бұрын
it prints 1 layer less
@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 Жыл бұрын
Atleast you tried and most importantly, it works. Just one row lesser.
@rsnda9747 ай бұрын
Excellent I understood please help in fubunocci
@1karachii Жыл бұрын
Amazingly Explained thanks
@siennaharris13803 жыл бұрын
Very helpful tutorial
@programsandme3 жыл бұрын
thank you 😊
@pannagabm2100 Жыл бұрын
Thank you mam.. This is the best video i got ❤
@GuitaristAlok Жыл бұрын
like your videos and voice tooo👍❣
@Vaibhavi_Nayak Жыл бұрын
Loved your explanation..
@joyprokash4013 Жыл бұрын
thanks a lot
@nireekshangoddugorla79212 жыл бұрын
good explanation madam
@mac2857 Жыл бұрын
your voice is very nice
@umeshsingh-nx1zq Жыл бұрын
what an awesome explanation
@holy-crusader613910 ай бұрын
bro thanks very good video
@sreedharlikit89662 жыл бұрын
Hats off super mam
@dyotakgiri79 Жыл бұрын
What a nice explanation!!!
@De.Raizel Жыл бұрын
Thanks
@palakgrover9925 Жыл бұрын
Which platform is she using here?
@MahvishMalik-d4f2 ай бұрын
is it compulsory to take j can we use other alphabets
@programsandme2 ай бұрын
Yes you can :)
@dhanashrichitukane11215 ай бұрын
Thanks ❤ dear
@programsandme3 ай бұрын
Welcome :)
@tanushreegharami227 Жыл бұрын
You got one more subscriber 😊 Thanks very helpful
@amariealfaro13652 жыл бұрын
Hello newbie here maam. it show the full pyramid and the right.. what about the left? Thank u
@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
@ylmazoncu5693 Жыл бұрын
Thank you!
@noushadkhan682 жыл бұрын
apka dhanyawaad
@firesevn1133 Жыл бұрын
thankyou all doubt clear
@185PerCentJuice4 жыл бұрын
Is it possible to print an isosceles triangle?
@programsandme4 жыл бұрын
Give me the pattern :)
@MaahirCodes Жыл бұрын
this is an iscosceles already bro
@adarshkhatri9932 жыл бұрын
Good explanation 😁
@programsandme2 жыл бұрын
Thank you 😊
@williamjayaraj22442 жыл бұрын
Thank you.
@akashdeep_x464 Жыл бұрын
Wow
@surajnawghare20654 жыл бұрын
Great
@programsandme4 жыл бұрын
Thank you :]
@vamshithota49192 жыл бұрын
U voice is like amulya academy only
@haribol60762 жыл бұрын
This is Amulya academy second KZbin channel only
@mac2857 Жыл бұрын
why do indians say 'only' after every sentence
@sahilvats5680 Жыл бұрын
👍👍👍👍
@sarubet87252 жыл бұрын
Can we do it without input command?
@MaahirCodes Жыл бұрын
It is possible but then yuuou can only get the pyramid for aa fixed value, ie cannot be inputed by the user
@digambar6191 Жыл бұрын
Thnx mam
@mashapoguajay33222 жыл бұрын
Thanks madam 😊
@aishwarydandale60412 жыл бұрын
ur voice ❤️❤️❤️❤️❤️❤️
@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 Жыл бұрын
Ur amulya academi right
@sreeramojusingamalai74722 жыл бұрын
Hi Amulya ji
@lm2thed1428 ай бұрын
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()
@vamshithota49192 жыл бұрын
Please explain hollow pymarid
@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
@easternwizard9869 Жыл бұрын
i have an doubt
@XILK_525 Жыл бұрын
South Indian
@aperson64058 ай бұрын
goat
@bdof65283 жыл бұрын
U voice match with amulya academy girl?
@programsandme3 жыл бұрын
Yeah.. because this is my another channel 😊
@bdof65283 жыл бұрын
@@programsandme congrats ❤️🎉 U are too good in programing 🔥
@viratstatus10192 жыл бұрын
@@programsandme 😂
@hi.996 Жыл бұрын
@@bdof6528 🗿
@05c4_sharmila5 Жыл бұрын
😂😂😂
@VinothKumar-ej4nn2 жыл бұрын
Not proper o/p ... It's coming EOFerror:
@programsandme2 жыл бұрын
Give me the program, I will check 😊
@VinayKumar-ek5el2 жыл бұрын
Mera issi code se kuch or hi print kr rhaa h
@priyanshudutta32295 ай бұрын
yennnnnnnnnnnnnnnnnnnnnn
@vaidikayadav2948 ай бұрын
Bro its an not yan
@nwaarkristianramos3514 ай бұрын
😂😂😂
@bilalraza81393 жыл бұрын
Jab koi jyada English bolta hai To mera dil karta hai... English me video bana rahe ho Or mujhe kuch ghanta samajh nahi aara