📜  pandas 更改最后一行 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:21.934000             🧑  作者: Mango

代码示例1
a.iloc[-1, a.columns.get_loc('a')] = 77
>>> a
   a  b  c
0  1  2  3
1  4  5  6
2 77  8  9