------
## 最终结论
```python
def chkList(lst):
    return len(set(lst)) == 1

assert chkList(['one','one','one']) == True
assert chkList(['one','Two','Three']) == False
assert chkList(['bigdata','python','Django']) == False
```