------
## 最终结论
```python
def word_len(word):
    length = len(word)
    return length % 2 == 1
```