๐งช Programming
โฑ๏ธ 17s
๐ 168 chars
๐ฆ 3.8B
๐ง Q4_0
Prompt: Write a Python function is_palindrome(s) that returns True if s is a palindrome. One test case.
Response
```python
def is_palindrome(s):
return s == s[::-1]
# Test Case:
print(isdependent('racecar')) # Output should be True, since 'racecar' is
a palindrome.
```