回答編集履歴
1
コード記載
answer
CHANGED
@@ -15,4 +15,20 @@
|
|
15
15
|
d = [*map(day_to_time,t)]
|
16
16
|
print(d)
|
17
17
|
# ['11:21:00', '11:22:00', '11:23:00', '11:24:00', '11:25:00', '11:26:00',...
|
18
|
+
```
|
19
|
+
|
20
|
+
でも、どうせpandas使うなら下のほうが楽ですね。
|
21
|
+
```python3
|
22
|
+
import pandas as pd
|
23
|
+
df = pd.read_excel("Book1.xlsx",header=None)
|
24
|
+
print(df)
|
25
|
+
"""
|
26
|
+
0
|
27
|
+
0 11:21:00
|
28
|
+
1 11:22:00
|
29
|
+
2 11:23:00
|
30
|
+
3 11:24:00
|
31
|
+
(中略)
|
32
|
+
49 12:10:00
|
33
|
+
"""
|
18
34
|
```
|