PYTHON -Program to check if a string is palindrome

Veröffentlicht am: 17 August 2020
auf dem Kanal: Technical RPA
304
5

Python program to check if a given string is palindrome or not
#Python program to check if a string is palindrome or not

#Given a string, write a python function to check if it is palindrome or not.
#A string is said to be palindrome if the reverse of the string is the same as string.
#For example, “radar” is a palindrome, but “radix” is not a palindrome.


#Examples:

#Input : malayalam
#Output : Yes

#Input : tea
#Output : No

def isPalindrome(word):
return word == word[::-1]


Driver code
word = "malayala"
ans = isPalindrome(word)

if ans:
print("Yes")
else:
print("No")


Auf dieser Seite können Sie das Online-Video PYTHON -Program to check if a string is palindrome mit der Dauer stunde minuten sekunde in guter Qualität ansehen, das der Benutzer Technical RPA 17 August 2020 hochgeladen hat, den Link mit Freunden und Bekannten teilen, dieses Video wurde auf Youtube bereits 304 Mal angesehen und es wurde von 5 den Zuschauern gefallen. Viel Spaß beim Betrachtenden Zuschauern gefallen!