#day-7
Read more stories on Hashnode
Articles with this tag
Write a Python program to check whether a given string is a palindrome or not:- str=input("ENTER THE STRING : ") if str == str[::-1]: ...