Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม Python เช็คว่า string เป็น palindrome หรือเปล่า


หน้าที่ของเราคือตรวจสอบสภาพอากาศว่าสตริงนี้เป็นพาลินโดรมหรือไม่

อัลกอริทึม

Step1: Enter string as an input.
Step2: Using string slicing we reverse the string and compare it back to the original string.
Step3: Then display the result.

โค้ดตัวอย่าง

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

ผลลัพธ์

Enter string:madam
The string is a palindrome
Enter string:python
The string isn't a palindrome