This is the best channel for learning Python... There is not a single video in youtube that can compete your videos mam. Thanks for your teaching and explanation Mam.
Mam Today only I have seen the first program on your channel.And I become a great fan of your teaching and so easily and nicely you have explained the whole program,Thank you so much.
Really thnx mam for upload all programs,....... I have watched many videos...... And really the logic of all patterns programs are very easy n understandable...... 🙏
Honest and efficient way read it and weep: var = raw_input("Input something and I'll determine whether or not it's a palindrome or not: ") new2= list(var) p = 0 for i in range(0,len(new2)-1): if(new2[i] != new2[len(new2)-i-1]): print("not a palindrome") p = p+2 if p == 0: print("palindrome")
ma'am actually its not required for prompting the number specially and then converting it to string. you can simply just prompt wether it is number or string, isn't it?
how to print the missing string(alphabet or number) when the input is not a palindrome for example if the input is MALAYAAM then my output must be L because L is missing when we reverse the string PLZ help
how to write program for searching a file for palindromes? I want program to scan every single word in this file and if it is palindrome word then print it else check next word and loop will work till last word of file? Can anyone help me in this?
number = int(input("Please Enter any Number: ")) reverse = 0 temp = number while(temp > 0): Reminder = temp % 10 reverse = (reverse * 10) + Reminder temp = temp //10 print("Reverse of a Given number is = %d" %reverse) if(number == reverse): print("%d is a Palindrome Number" %number) else: print("%d is not a Palindrome Number" %number) video link: for reversing string using loops: ruclips.net/video/4JqHDpmF5Yc/видео.html :)
You need print num value. def floyd(): n=int(input("Enter the number of rows:")) num=1 for row in range(1,n+1): for col in range(1,row+1): print(format(num,"
Hi! Can you please make a video on the question: If a list in python has mix of strings & numbers, how will you make separate lists of strings & numbers? I saw ord() for getting ASCII code in python & chr() for converting ASCII codes to characters somewhere & tried to use them to get answer of this question but it did not work!! :(
We can also do this with out str() method: def reversenum(num): ans = 0 leng = len(str(num)) for i in range(leng): a = num % 10 ans = ans + (a * (10 ** (leng - i - 1))) num = num // 10 return ans a=11228142211 print(reversenum(a))
Hi! Woooow! Unbelievable!!!! I am very impressed by your knowledge and mastery of Python language and also by the way you explain!! I love programming too and Python language. I have begun learning It for about four months and I would like to be on contact with you if possible. Thanks a lot!!!!
Maam you helped me a lot in learning these. i love your voice because this is the voice who really teached me python. thank you
My pleasure 😊
Don't know why but u are only teacher who teaches python so well even better than telusko
Thank you :)
This is the best channel for learning Python... There is not a single video in youtube that can compete your videos mam. Thanks for your teaching and explanation Mam.
Thank you :)
Actually there is
Code with harry
The use of slicing for palindrome program was fabulous idea
Ur godgifted to us mam to listen such magical voice in teaching
Thank you :)
Best explanation ever...👍🏻👍🏻👍🏻
Thank you 😊
Mam Today only I have seen the first program on your channel.And I become a great fan of your teaching and so easily and nicely you have explained the whole program,Thank you so much.
Thank you 😊
Really thnx mam for upload all programs,....... I have watched many videos...... And really the logic of all patterns programs are very easy n understandable...... 🙏
Thank you :)
Really no one teach like you mam
Love you ur way of explaining...
Thank you :)
Is she a girl?
Nice ...such a great Example
That was a really great explaination !! Keep up the good work
Thanks, will do! :)
u hv good teaching skills
Your all videos are very Very good.Explaination is nice so easy to understand.
Super explaination , thank you
You are welcome :)
Thankyou thankyou so much...On Google this program is very tough but u make it so easy ♥️
Great explanation and nice voice! 😉
thank madam it helps a lot....
That is very nice tutorial, how can you write a program with only one statement long to print the number of palindrome?
thanks
Super... Ur videos r awesome 👏 👏 👏
Thank you :)
yes it was very usefull and was easily explained
Glad to hear that :)
Thanks you , very good video.
Thank you :)
After 2 years still this vedio very helpful😁
True 😀😀
Glad to hear that :)
Honest and efficient way read it and weep:
var = raw_input("Input something and I'll determine whether or not it's a palindrome or not: ")
new2= list(var)
p = 0
for i in range(0,len(new2)-1):
if(new2[i] != new2[len(new2)-i-1]):
print("not a palindrome")
p = p+2
if p == 0:
print("palindrome")
It is not that efficient because it compares each character pair twice. It would be enough to stop after half of the string
Your voice is so sweet and clear which make kind attention to understand program and also way of teaching very easy.
very helpful. And the way you illustrated was very easy. Thank you so much for this video.
Thank you :)
Thanks. Loved ur voice nd explanation. Keep doing good work
Thank you :)
Before commenting I think you are a child.
Your voice is lovely 😍
😊 thank you
Thank you very much easy to understanding 🙏
Glad to hear that :)
May I know where is your institute mam
To be honest you are awesome 💕💕💕
THANK YOU ! 💕
Thank you :)
Thank you for teaching me! I have learnt heaps from your channel.
Glad to hear that :)
very nice video and easy to understand. step by step explanation was really good.
Thank you :)
life saver!!! thank you so much
My Pleasure :)
The best and the easiest method 🥰🥰🥰
Thank u so much😃😃 u hv helped me a lot😭😭😭😭
My pleasure 😊
Thanks a lot !!!!!
Very easy to understand
Pleasure :)
Amazing thank you!
Welcome :)
yes, it was good. but what if user use spaces like ( madam) or capital letters at starting of sentence.?
You have helped me a lot..
Thanks 💖..
Please keep making these videos.,✨✨
Thank you, I will :)
Doing good job ,keep support for learners🙏
Thank you :)
Thank you very much for sharing your knowledge. Very helpful 🙏
My pleasure :)
ma'am actually its not required for prompting the number specially and then converting it to string. you can simply just prompt wether it is number or string, isn't it?
Yes you can take string input :)
Thank you dear..
Welcome :)
Very nice explanation Mam.
Thank you:)
your voice is sooooooooooooooooo clear and also cute...........
Thank you :)
Please solve this question mam
S=praveen kumar using for loop i want output like this neevarp ramuk dont use list only string form
how to print the missing string(alphabet or number) when the input is not a palindrome for example if the input is MALAYAAM then my output must be L because L is missing when we reverse the string PLZ help
if not a palindrome how to print the missing string ,plz help mam
Good explanation
Thank you :)
I love your explanation ❤️❤️😶❤️😍❤️❤️
Pls also make a video to capitalize first letter of the input from .upper function not .capitalize function
#techsatyakash
Thank you, i will try :)
i could listen to you tallk all day XD
It's easy to learn for beginners.. Thanks a lot :)
Pleasure :)
It's not getting proper output in 3.6.5 may I know y
I am running this program in anaconda Jupiter. Its showing error in str(num)
?????
Give me the complete program, i will check.
:)
how to check whether the string is palindrome or not without using any loop in python can you explain this pls??
good job! I love it
Thank you :)
My pleasure.
Thank you very much
Pleasure 😊
great explanation brother subscribed
Thank you. How do we ignore the letter case. For example a string is palindrome but comprises both capital and small letter.
After taking the input change the case of input then you can check that is palindrome or not :)
I like the way you pronounce m as yum...😂😂
Check as Chuck
Hihi!
Abey ye mam hai?
Mam aap bhaut aacha padhate ho plzz sarri video dallo
Thank you :)
Correct bole bhai
how to write program for searching a file for palindromes? I want program to scan every single word in this file and if it is palindrome word then print it else check next word and loop will work till last word of file? Can anyone help me in this?
Use for loop and use conditional statements in it's suite.
Good work, i wuold add "string = string.lower()" after you collect the input otherwise something like anNa would not be seen as a palindrome
Thank you, you helped me sir!
Yes we can do that :)
Ahh thxx very much 🙂🙂🙂🙂
Welcome:)
What to to do for case insensitive pallindrome check
You can change the case of the string first then you can proceed :)
Very Nice Video
Thank you :)
Hi mam, I really impressed the way u taught , and it is been very useful, thank you so much mam, I love you 💞😘❤
Thanks a lot for your help
Pleasure :)
Can u teach this using looping conditions
number = int(input("Please Enter any Number: "))
reverse = 0
temp = number
while(temp > 0):
Reminder = temp % 10
reverse = (reverse * 10) + Reminder
temp = temp //10
print("Reverse of a Given number is = %d" %reverse)
if(number == reverse):
print("%d is a Palindrome Number" %number)
else:
print("%d is not a Palindrome Number" %number)
video link:
for reversing string using loops:
ruclips.net/video/4JqHDpmF5Yc/видео.html
:)
Please make a tutorial on array rotation, array manipulation
Thank you ma'am......from long time I was confused in palindrome but now it cleared thanks again ma'am 😀😀😀
Pleasure :)
Thanks again ma'am......
Thank you.
You're welcome! :)
How to do the same problem using functions
Put the code {except the input part }in a function.
After taking input call that function to check input is palindrome or not :)
Can you give an example plz
How to find the palindromic prime or not for the given number plz reply
Write the conditions for both the palindrome and prime
@@nishithareddy6169 it will not work for number 101 this number is palindromic prime by it shows not a palindromic prime
Excellent bro
Thank you:)
very nice video
Thank you :)
Your are a genius
Thank you:)
mam please make a series on python programs asked in interview
Sure :)
Can you upload a program to print palindrome dates in a given year?
I will try :)
M- "yum"
L- "Yul"
Well that sounds nice 😁😁
🤣🤣🤣🤣
Fuck you all trollers
thank you so much for the videos mam
Welcome:)
It's getting wrong output in python 3.6.5..i don't know y
Give me the program i will check :)
cute accent and awesome explanation, thanks
madam nice video whether there is any other possiblity to write this program in a shorter manner
string = input("enter string")
new_str = string[::-1]
if string == new_str:
print("palindrome")
else:
print("not a palindrome")
:)
can you please give the code for floyd's triangle, your video about it had errors and the format thing that you suggested had a wrong output too.
What is the error?
can you give me the program and output.
I will check:)
def floyd():
n=int(input("Enter the number of rows:"))
num=1
for row in range(1,n+1):
for col in range(1,row+1):
print(format(n,"
You need print num value.
def floyd():
n=int(input("Enter the number of rows:"))
num=1
for row in range(1,n+1):
for col in range(1,row+1):
print(format(num,"
@@AmulsAcademy thank you
welcome:)
rev_string=string[ : : -1], this will give indent error,what to do mam
You placed extra space somewhere before the sentence in the program :)
Subscribed !!
Thank you 😊
Thank you so much Mam, you are explaining in very simple and easily. 🙏💕
My Pleasure :)
Thank u soo much
.... Sumita arora has a longer nd complex apperoach for same program
Thank you very much mam
My pleasure:)
Hi mam I'm Viswanath. Can you make a video for interview questions from py
Already uploaded few videos {Guess the output series}.
@@AmulsAcademy ok tq for your reply.
can u show reverse of sub string
Wow your voice is so lovely 😍👌👌
Thank you :)
very helpful
Thank you:)
Thank you so much ma'am...
But how to write the same program using only for loop ma'am???
Try this:
str1 = input("string:")
str2=""
n = len(str1)
for i in range(n-1,-1,-1):
str2 = str2+str1[i]
print(str2)
@@AmulsAcademy ...thanks a lotttttt ma'am.... I got it.... 🙏🙏🙏🙏🙏
Wow this method is easy...👍 I studied earlier the difficult method and was very lengthy 😭
:)
Good tutorial
Thanks darling...
She is my girl
😂😂😂
Hi! Can you please make a video on the question: If a list in python has mix of strings & numbers, how will you make separate lists of strings & numbers? I saw ord() for getting ASCII code in python & chr() for converting ASCII codes to characters somewhere & tried to use them to get answer of this question but it did not work!! :(
We can also do this with out str() method:
def reversenum(num):
ans = 0
leng = len(str(num))
for i in range(leng):
a = num % 10
ans = ans + (a * (10 ** (leng - i - 1)))
num = num // 10
return ans
a=11228142211
print(reversenum(a))
Ma'am can u PLZZ start teaching online from the basic as my basic is not so strong plz ma'am .
Ma'am also pls tell from where we can learn basic
Already uploaded videos on python basics{from start}.
You can checkout those videos :)
@@AmulsAcademy ok maam
Thanks mam
Hi! Woooow! Unbelievable!!!! I am very impressed by your knowledge and mastery of Python language and also by the way you explain!! I love programming too and Python language. I have begun learning It for about four months and I would like to be on contact with you if possible. Thanks a lot!!!!
Pleasure :)