Frequently Asked Python Program 20:Check String is Palindrome or Not

  Рет қаралды 102,809

SDET- QA

SDET- QA

Күн бұрын

Пікірлер: 29
@op9301
@op9301 2 жыл бұрын
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")
@op9301
@op9301 2 жыл бұрын
if your interviewer asks for a good logic
@chrisescalante4059
@chrisescalante4059 4 жыл бұрын
This video was a lifesaver. Thanks so much.
@sdetpavan
@sdetpavan 2 жыл бұрын
Welcome
@jayannraet7880
@jayannraet7880 3 жыл бұрын
string=raw_input("Enter string:") if(string==string[::-1]): print("The string is a palindrome") else: print("The string isn't a palindrome")
@malleshreddy2553
@malleshreddy2553 3 жыл бұрын
Tysm bro ❣️
@gouthamichitty4693
@gouthamichitty4693 2 жыл бұрын
Ty so much it helps me alot
@LeviElekes
@LeviElekes 3 жыл бұрын
Thanks for the help!
@sdetpavan
@sdetpavan 2 жыл бұрын
My pleasure
@martiniquethestoryteller5716
@martiniquethestoryteller5716 8 ай бұрын
Thank you for explaining why you did each step
@ADITYAKUMAR-td5xf
@ADITYAKUMAR-td5xf 3 жыл бұрын
Thanks for this video, Before i think its too difficult but now i know how to do this , it is very easy . Again thanks 😊
@sdetpavan
@sdetpavan 2 жыл бұрын
Most welcome
@visionstatus2231
@visionstatus2231 2 жыл бұрын
Str=input() If Str==reversed (Str): Print("pal") Else: Print ("not pal")
@ganeshadhikari8336
@ganeshadhikari8336 8 ай бұрын
you are fantastic no words to say but compare to other youtuber why less subscribers???? At least I want to see in millions club..
@visionstatus2231
@visionstatus2231 2 жыл бұрын
Str=input() Concat ="" For i in range(len(Str)-1, -1,-1): Concat +=Str(i) If Str==Concat: Print("pal") Else: Print("Not pal"
@visionstatus2231
@visionstatus2231 2 жыл бұрын
Str =input() I=0 Concat="" While i
@aryanbhambere
@aryanbhambere Күн бұрын
Sir can you give the same program for incasesensitive string.
@salahessammohamed4415
@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
@SN-pm5pp Жыл бұрын
I have a question , Did you give the input string value as abcde or abcdef ?
@heenashaikh3350
@heenashaikh3350 Жыл бұрын
Awesomeness
@sdetpavan
@sdetpavan Жыл бұрын
Thanks
@amrt.suresh
@amrt.suresh 3 жыл бұрын
omg u r awesmee tysm
@sdetpavan
@sdetpavan 2 жыл бұрын
Thanks
@lokeshmacharla6322
@lokeshmacharla6322 4 жыл бұрын
Sir would you please tell me that why you made print statements into comments is it necessary .please reply sir...
@michaelmuller4849
@michaelmuller4849 4 жыл бұрын
he just wrote for better readability. you don´t have to, but this way only get the output you need
@gauravsavlani5725
@gauravsavlani5725 3 жыл бұрын
Thank you
@sdetpavan
@sdetpavan 2 жыл бұрын
You're welcome
@samhitap7828
@samhitap7828 Жыл бұрын
Thanx
@sdetpavan
@sdetpavan Жыл бұрын
Welcome
Check If A String Is A Palindrome | Python Example
9:01
Portfolio Courses
Рет қаралды 20 М.
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 48 МЛН
Правильный подход к детям
00:18
Beatrise
Рет қаралды 10 МЛН
python program for Numeric palindrome
6:49
The Programming Portal
Рет қаралды 18 М.
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 335 М.
Python Program to Check If the Number is Armstrong or Not?
14:37
WsCube Tech
Рет қаралды 66 М.
Python Program #17 - Check Armstrong Number in Python
8:44
Programming For Beginners
Рет қаралды 14 М.
Palindrome Program in Python
4:52
Example Program
Рет қаралды 184 М.
Learn Regular Expressions In 20 Minutes
20:52
Web Dev Simplified
Рет қаралды 1,3 МЛН
Create A Python API in 12 Minutes
12:05
Tech With Tim
Рет қаралды 705 М.