All your tutorials are so brilliant, clear, nice, logical, simple, cool, easy to absorb & best explanation of patterns & numbers! Believe me I could not find such video explanations elsewhere in other youtube channels. Kudos & many many thanks 👋for your tutorials! ONE REQUEST - CAN YOU ADD OTHER NEW TOPICS OF PYTHON IN VIDEOS which are some confusing/somewhat hard to understand/remember (eg. to name a few - split, array/matrix multiplication, most frequently asked questions in python interviews with answers etc. ....stuff like that) thanks a lot & hopefully this channel grows further!😃👍👏🙏
Hello Ma'am, Decreasing pattern with starting character is same for n = 5 isn't giving correct output for all test cases. For ex: for n = 1 , it's giving 'E' Rather it should give 'A' Thanks in advance!
Hi , in reverse hill.........i got the shape correctly like reverse hill,but my doubt is i got output like * * * * * * * * *,.......i got like this ,but what i want is ...........* * * * * * * * * * * like this ... 1st 5 stars ,then 4 ,then 3,then 2 ,atlast 1.....but igot like 5 ,3,1 series what can ichange in this same logic
In this video at 22.15, 2nd pattern as per below: R E D O R E D O R D O R O R R I have written the code successfully but I added 1 more last loop as per below: s='CODER' n=len(s) k=n-1 for i in range(n): p=k for j in range(i): print(' ', end=' ') for j in range(i,n-1): print(s[p],end=' ') p-=1 for j in range(n-4): print(s[4], end=' ') k-=1 print() Can you please provide the optimized code means only with 2 loops ? Thanks, looking for your early reply.😊
madam, your explanation is awesome it helps me a lot if you mind, can please make videos for pyramid patterns and different hollow patterns in python ! please ,madam can make it fast i am requesting you, madam
n=int(input()) ascii_value=65 z=1 for i in range(0,n): for j in range(n-i,0,-1): print(" ",end=" ") for j in range(0,z): print(chr(ascii_value),end=" ") z+=2 ascii_value+=1 print() #out put 5 A B B B C C C C C D D D D D D D E E E E E E E E E === Code Execution Successful ===
All your tutorials are so brilliant, clear, nice, logical, simple, cool, easy to absorb & best explanation of patterns & numbers! Believe me I could not find such video explanations elsewhere in other youtube channels. Kudos & many many thanks 👋for your tutorials! ONE REQUEST - CAN YOU ADD OTHER NEW TOPICS OF PYTHON IN VIDEOS which are some confusing/somewhat hard to understand/remember (eg. to name a few - split, array/matrix multiplication, most frequently asked questions in python interviews with answers etc. ....stuff like that) thanks a lot & hopefully this channel grows further!😃👍👏🙏
Literally I watched every videos of your channel and I'm awe of your explanation of logics. Thanks for making all these videos.
Thank you so much for your tutorials !! They are really helpful !!
Superb Explanation ma'am........
learned a lot from your videos,thanks a lot mam
What a amazing video mam, I am glad you made this. I am really really blessed
print("Thank you mam")
How to solve the double hill pattern? I am unable to solve the code by following the above class.
really helpful and great explaination , Thanks
hello can you also make video about how to solve any hollow pattern in python? really love your explanation!
Sure we will work on it.
Hi. You can view the hollow pattern video in python here - th-cam.com/video/iOxF5cDVIZo/w-d-xo.html
how to print a number triangle and hallow space
For decrement order like abcdedcba by taking user input how to solve mam..😐
Mam plz tell me code for butterfly
Hello Ma'am,
Decreasing pattern with starting character is same for n = 5 isn't giving correct output for all test cases.
For ex: for n = 1 , it's giving 'E'
Rather it should give 'A'
Thanks in advance!
Hi , in reverse hill.........i got the shape correctly like reverse hill,but my doubt is i got output like
* * * * *
* * *
*,.......i got like this ,but what i want is ...........* * * * *
* * *
* *
* like this ... 1st 5 stars ,then 4 ,then 3,then 2 ,atlast 1.....but igot like 5 ,3,1 series what can ichange in this same logic
In this video at 22.15, 2nd pattern as per below:
R E D O R
E D O R
D O R
O R
R
I have written the code successfully but I added 1 more last loop as per below:
s='CODER'
n=len(s)
k=n-1
for i in range(n):
p=k
for j in range(i):
print(' ', end=' ')
for j in range(i,n-1):
print(s[p],end=' ')
p-=1
for j in range(n-4):
print(s[4], end=' ')
k-=1
print()
Can you please provide the optimized code means only with 2 loops ? Thanks, looking for your early reply.😊
Thank you ❤
hello plz make a video on butterfly pattern using python..
madam,
your explanation is awesome
it helps me a lot
if you mind, can please make videos for pyramid patterns and different hollow patterns in python !
please ,madam can make it fast
i am requesting you, madam
We are working on it and will upload soon
Hi. You can view the hollow pattern video in python here - th-cam.com/video/iOxF5cDVIZo/w-d-xo.html
@@SimplyCoding Thanks for explanation for hollow patterns
Loved solving the patterns
But is nt there any better alternative then writing these much bigger loops?
A beginner 🎆
There is! but its easier this way if you are learning star, number + character pattern together as a beginner.
@@SimplyCoding would love an video on alternative as well
Hope you will!!
Can u plz share me links of your all python videos
Hi, You can watch the Python Playlist - th-cam.com/play/PLWWFf_h_MQRqgCdK-536AE7wy9GSO35cu.html
Thankyu so much
can we write these programmes in while loop! if yes pls do videos out of it
There is a very simple method to convert any for loop to while and vice versa. You can see my video on for and while for it.
@@SimplyCoding hollow pattern some problem is coming I am unable to identify!
You can send your code to info@simplycoding.in
@@SimplyCoding Thanks a lot
@@SimplyCoding I'll do!
thank u
shall anyone pls tell the code for right sided solid half diamond
n = 5
for i in range(n-1):
for j in range(i):
print('*', end=' ')
print()
for i in range(n):
for j in range(i, n-1):
print('*', end=' ')
print()
@@SimplyCoding tqu soo much mam
15:40
Mam your teaching is good but codes are not fitting on the screen then please show rest code also
hello Mam, how to print same pattern adjacent to the other one .
thanks in advance
Can you give an example of pattern which you want to display?
Yeah, for example I want to display a piramid(with full of stars as mentioned in previous vedios) one after the other upto n times
In that case you have to first make a proper rectangle pattern, means space in the end too and then put all j loops into another loop
❤ thaks a lot I did it
@@nanduriraju9474pls snd the code
Thanks a ton!!
n=int(input())
ascii_value=65
z=1
for i in range(0,n):
for j in range(n-i,0,-1):
print(" ",end=" ")
for j in range(0,z):
print(chr(ascii_value),end=" ")
z+=2
ascii_value+=1
print()
#out put
5
A
B B B
C C C C C
D D D D D D D
E E E E E E E E E
=== Code Execution Successful ===
how to print
A
A B
A B B
A B B B
A B B B B