------
## 最终结论
```python
def next_smallest(lst):
    if len(lst) < 2:
        return None
    lst = list(set(lst))
    lst.sort()
    if len(lst) > 1:
        return lst[1]
    else:
        return None
```