Write a Python Program to Check Whether a String is Palindrome or Not

preview_player
Показать описание
Hello Programmers, Welcome to my channel.

In this video you will learn about how to Write a Python Program to Check Whether a String is Palindrome or Not

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

Code
=============================
string = input("Enter a String : ")

if string == string[::-1]:
print("String is Palindrome")
else:
print("String is Not a Palindrome")

Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
Рекомендации по теме