在Python中,可以使用append()方法向列表中添加元素。示例如下:
```python
my_list = [1, 2, 3, 4, 5]
my_list.append(6)
print(my_list)
```
运行以上代码后,输出结果为:
[1, 2, 3, 4, 5, 6]