This code isn't working and is just returning "Is a Palindrome", I believe it is a slicing problem of sorts. Please help!
#!/usr/bin/env python
x = input("Enter here: ")
x is x[:-1]
if True:
print ("Is a Palindrome")
else:
print ("Is Not a Palindrome")