Python-熊猫(在两者之间插入新行,但不覆盖现有行)

时间:2018-10-30 22:57:29

标签: python python-3.x pandas insert

我正在尝试在数据帧之间插入一个新行(恰好是第6行),并且无法覆盖现有行。您能帮我解决这个问题吗?

out2.loc[6] = ['EMPTY LINE']
out2.index = out2.index + 1
out2 = out2.sort_index()
print(out2)

0 个答案:

没有答案