------
## 最终结论
```python
def position_max(lst):
    max_value = max(lst)
    return [index for index, value in enumerate(lst) if value == max_value]
```