标签: python pandas dataframe
我有一个大约50-100k行的df。如何仅对前150行和后150行之间的行调用函数X?
答案 0 :(得分:3)
使用iloc
iloc
df.iloc[150:-150,:]