------
## 最终结论
```python
def sort_tuple(lst):
    return sorted(lst, key=lambda x: x[-1])
```