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

preview_player
Показать описание
Topic : Check String is Palindrome or Not

#########################
Udemy Courses:
#########################

Manual Testing+Agile with Jira Tool
************************************

Selenium with Java+Cucumber
********************************

Selenium with Python & PyTest
********************************

Selenium with python using Robot framework
****************************************

API Testing(Postman, RestAssured & SoapUI)
*****************************************

Web & API Automation using Cypress with Javascript
********************************************

Playwright with Javascript
**************************

Jmeter-Performance Testing
************************

SDET Essencials(Full Stack QA)
*************************

Appium-Mobile Automation Testing
************************************

Java Collections
*****************

Python Programming
*********************

Cucumber BDD Framework
***************************

Protractor with Javascript
***************************

####################################
Youtube Playlists:
####################################

Manual Testing & Agile
***********************

SQL
*************************

linux & Shell Scripting
**********************

Java
**********************

Selenium With Java+Cucumber
********************************

Python
********************************

Selenium With Python,Pytest&Behave
***************************************

Selenium With Python Using Robert Framework
(Web&API Testing)
*************************************************

API Testing (Postman,SoapUi,&Rest Assured)
**********************************************

Mobile App Testing Appium
****************************

Performance Testing Jmeter
*******************************

Maven,Jenkins,Git,Github,CI/CD
*******************************

SQL,DB Testing&ETL,Bigdata
*******************************

JavaScript Based Automation Tools
********************************

Selector Hub Tools
********************

GraphQL
******************

Cypress API Testing
********************

Cypress Web Testing
**********************

Playwright with Javascipt
**************************

#PythonPalindromeCheck
#StringPalindrome
#PalindromeDetection
#PalindromeProgram
#PythonCoding
#CodingChallenge
#StringManipulation
#AlgorithmPractice
#TechInterview
#CodingInPython
#PalindromeLogic
#CodingProblems
#PythonStrings
#CodeLogic
#ProgrammingSkills
#CodePractice
#PythonAlgorithms
#StringReversal
#ProgrammingTips
#CodingSolutions
#PythonLearning
#CodeDebugging
#AlgorithmDesign
#PythonTricks
#CodingCommunity
#PythonTips
#PalindromeAlgorithm
#CodeEfficiency
#ProgrammingInPython
#TechCoding
#PythonDevelopment
#CodeOptimization
#PalindromeTutorial
#CodeBreakdown
#PythonChallenge
#CodingInspiration
#AlgorithmExplained
#PalindromeExplained
#CodeWalkthrough
#PythonExploration
#ProblemSolving
#CodePatterns
#PythonLogic
#CodingJourney
#PalindromeTricks
#CodeExplanation
#PythonCommunity
#CodingHelp
#AlgorithmTips
#PalindromeSolution
Рекомендации по теме
Комментарии
Автор

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")

op
Автор

This video was a lifesaver. Thanks so much.

chrisescalante
Автор

you are fantastic no words to say but compare to other youtuber why less subscribers???? At least I want to see in millions club..

ganeshadhikari
Автор

गणेश शिव पार्वती जी गुरू भगवान माता पिता जी धन्यवाद मुझे ये सिखाने और दिखाने के लिए ❤🎉 बसंत पंचमी और महाकुंभ की शुभकामनाएं

अभयदीप-जग
Автор

Thank you for explaining why you did each step

martiniquethestoryteller
Автор

string=raw_input("Enter string:")
if(string==string[::-1]):
print("The string is a palindrome")
else:
print("The string isn't a palindrome")

jayannraet
Автор

Thanks for this video, Before i think its too difficult but now i know how to do this, it is very easy .
Again thanks 😊

ADITYAKUMAR-tdxf
Автор

I have a question, Did you give the input string value as abcde or abcdef ?

SN-pmpp
Автор

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

salahessammohamed
Автор

Sir would you please tell me that why you made print statements into comments is it necessary .please reply sir...

lokeshmacharla
welcome to shbcf.ru