回答編集履歴

1

誤字の修正

2020/09/21 07:18

投稿

toast-uz
toast-uz

スコア3266

test CHANGED
@@ -30,9 +30,9 @@
30
30
 
31
31
  # 抽出したデータフレームを表示する
32
32
 
33
- for _, row in df_out.iterrows():
33
+ for _, col in df_out.iterrows():
34
34
 
35
- output = 'file2のB列=' + row[0] + ',file2のC列=' + row[1]
35
+ output = 'file2のB列=' + col[0] + ',file2のC列=' + col[1]
36
36
 
37
37
  print(output)
38
38