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