Write a single-line expression for determining if a string is a palindrome (reads the same forwards as backwards).
Simply slice the string backwards and compare with the original:
>>> s = 'banana'
>>> s == s[::-1]
False
>>> s = 'deified'
>>> s == s[::-1]
True