Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

how to make a palindrome checker in python code example

Example: palindrome words python

mes=input("Enter the word and see if it is palindrome ")
if mes==mes[::-1]:
    print("This word is palindrome")
else:
    print("This word is not palindrome")

Tags:

Python Example

Related

passing two functions to onclick code example how to install gcc in vs code using terminal code example break in python while loop code example div hover overlay code example ionic display show password in input with floating code example marh random code example Error: listen EADDRINUSE: address already in use 0.0.0.0:7000 code example facebook.comm code example chrome remove CORS code example sql extract only date from timestamp code example magento install 2.3.2 code example send request with curl code example

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy