开发者社区> 问答> 正文

使用python嵌套for循环(行和列)

首先,感谢您提供的任何帮助。其次,我试图编写一个嵌套循环,但它始终会给我“太多索引器”错误。我有一个数据框,我想遍历所有行,并且在每一行内,我想对列(5-15)中的值进行切片,并将它们作为新行添加到数据框中,同时保持第0列中的值相同4和15-20。并为新行重置列(5-15)中的值。

这是我写的嵌套循环:

我已经尝试过先行而不循环,它的工作原理

对于test_combi.iterrows()中的i:对于range(5,15)中的j:print(j)df = test_combi.append(pd.Series([test_combi.iloc [i,0],test_combi.iloc [i,1 ],test_combi.iloc [i,2],test_combi.iloc [i,3],test_combi.iloc [i,j],0,0,0,0,0,0,0,0,0,0,0,test_combi .iloc [i,15],test_combi.iloc [i,16],test_combi.iloc [i,17],test_combi.iloc [i,18]],index = test_combi.columns),ignore_index = True)

错误是“索引器太多”

展开
收起
被纵养的懒猫 2019-09-29 18:17:04 1203 0
1 条回答
写回答
取消 提交回答
  • 您好!这里是我写的遍历数据框行和列的代码,您可参考一下,继续改动,希望对你有帮助 for indexs in df.index: for i in range(len(df.loc[indexs].values)): for k in key: # 这里是遍历建立的关键字列表

    2019-10-31 18:21:28
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载