python dataframe加一列
时间: 2023-04-26 19:03:22 浏览: 119
使用Python向DataFrame中指定位置添加一列或多列的方法
4星 · 用户满意度95%
要给Python DataFrame加一列,可以使用以下代码:
```python
df['new_column'] = [1, 2, 3, 4, 5]
```
其中,`df`是你的DataFrame,`new_column`是你要添加的新列的名称,`[1, 2, 3, 4, 5]`是你要添加的新列的值。你可以根据需要修改这些值。
阅读全文