📜  删除一系列行 pandas - Python 代码示例

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

代码示例1
#To delete rows 12 to 22 from the dataframe 
df.drop(range(12,23), inplace=True)