質問編集履歴
1
コードの一部修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,11 +10,13 @@
|
|
10
10
|
|
11
11
|
with pd.ExcelWriter("/Users/hoge/foo.xlsx") as writer:
|
12
12
|
|
13
|
-
df
|
13
|
+
df1 = func(df)
|
14
14
|
|
15
|
-
|
15
|
+
df1.to_excel(writer, sheet_name="a")
|
16
16
|
|
17
|
+
df2 = func2(df)
|
18
|
+
|
17
|
-
|
19
|
+
df2.to_excel(writer, sheet_name="a")
|
18
20
|
|
19
21
|
|
20
22
|
|