質問編集履歴
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -62,7 +62,17 @@
|
|
62
62
|
|
63
63
|
```Python
|
64
64
|
|
65
|
+
|
66
|
+
|
67
|
+
import pandas as pd
|
68
|
+
|
69
|
+
df3=pd.read_excel(path+("課題3.xlsx"),header=0,index_col=0)
|
70
|
+
|
65
|
-
df3[
|
71
|
+
df3["充電残量"]=df["充電残量"]*100
|
72
|
+
|
73
|
+
df3
|
74
|
+
|
75
|
+
|
66
76
|
|
67
77
|
```
|
68
78
|
|