XJTU_Python/homework/2/8_2.py

6 lines
74 B
Python

s = input()
if (s == s[::-1]):
print("True")
else:
print("False")