adspace


Write a function to check whether a particular word is a palindrome or not.

Answer Posted / Arvind Tripathi

Here's an example of a function in Python to check if a given word is a palindrome:

```python
def is_palindrome(word):
reversed_word = word[::-1]
return word == reversed_word
```

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

No New Questions to Answer in this Category !!    You can

Post New Questions

Answer Questions in Different Category