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