要输出列表中最大的数,可以使用内置函数`max()`来找到列表中的最大值,然后将其打印出来。例如:
```python
numbers = [10, 20, 30, 40, 50]
max_number = max(numbers)
print("The maximum number in the list is:", max_number)
```
上面的代码会输出列表`numbers`中的最大值,即`50`。