質問編集履歴
1
コードの一部修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,9 +4,10 @@
|
|
4
4
|
|
5
5
|
```python
|
6
6
|
with pd.ExcelWriter("/Users/hoge/foo.xlsx") as writer:
|
7
|
-
|
7
|
+
df1 = func(df)
|
8
|
-
|
8
|
+
df1.to_excel(writer, sheet_name="a")
|
9
|
+
df2 = func2(df)
|
9
|
-
|
10
|
+
df2.to_excel(writer, sheet_name="a")
|
10
11
|
|
11
12
|
```
|
12
13
|
現実
|