x = input("enter a string: ") i = len(x) - 1 rev = "" while i >= 0: rev = rev + x[i] i = i - 1 print(rev) if rev == x: print("palindrome") else: print("not palindrome")
@op93012 жыл бұрын
if your interviewer asks for a good logic
@chrisescalante40594 жыл бұрын
This video was a lifesaver. Thanks so much.
@sdetpavan2 жыл бұрын
Welcome
@jayannraet78803 жыл бұрын
string=raw_input("Enter string:") if(string==string[::-1]): print("The string is a palindrome") else: print("The string isn't a palindrome")
@malleshreddy25533 жыл бұрын
Tysm bro ❣️
@gouthamichitty46932 жыл бұрын
Ty so much it helps me alot
@LeviElekes3 жыл бұрын
Thanks for the help!
@sdetpavan2 жыл бұрын
My pleasure
@martiniquethestoryteller57168 ай бұрын
Thank you for explaining why you did each step
@ADITYAKUMAR-td5xf3 жыл бұрын
Thanks for this video, Before i think its too difficult but now i know how to do this , it is very easy . Again thanks 😊
@sdetpavan2 жыл бұрын
Most welcome
@visionstatus22312 жыл бұрын
Str=input() If Str==reversed (Str): Print("pal") Else: Print ("not pal")
@ganeshadhikari83368 ай бұрын
you are fantastic no words to say but compare to other youtuber why less subscribers???? At least I want to see in millions club..
@visionstatus22312 жыл бұрын
Str=input() Concat ="" For i in range(len(Str)-1, -1,-1): Concat +=Str(i) If Str==Concat: Print("pal") Else: Print("Not pal"
@visionstatus22312 жыл бұрын
Str =input() I=0 Concat="" While i
@aryanbhambereКүн бұрын
Sir can you give the same program for incasesensitive string.
@salahessammohamed4415 Жыл бұрын
I want to add one note I noticed it when I wrote Racecar R only in upper case the result is non-palindrome although the same word in lower case is palindrome to fix this error we can use casefold() after setting the string to convert upper case to lower case I tried it and work
@SN-pm5pp Жыл бұрын
I have a question , Did you give the input string value as abcde or abcdef ?
@heenashaikh3350 Жыл бұрын
Awesomeness
@sdetpavan Жыл бұрын
Thanks
@amrt.suresh3 жыл бұрын
omg u r awesmee tysm
@sdetpavan2 жыл бұрын
Thanks
@lokeshmacharla63224 жыл бұрын
Sir would you please tell me that why you made print statements into comments is it necessary .please reply sir...
@michaelmuller48494 жыл бұрын
he just wrote for better readability. you don´t have to, but this way only get the output you need