回答編集履歴

1

コード記載

2020/07/03 04:14

投稿

jeanbiego
jeanbiego

スコア3966

test CHANGED
@@ -33,3 +33,35 @@
33
33
  # ['11:21:00', '11:22:00', '11:23:00', '11:24:00', '11:25:00', '11:26:00',...
34
34
 
35
35
  ```
36
+
37
+
38
+
39
+ でも、どうせpandas使うなら下のほうが楽ですね。
40
+
41
+ ```python3
42
+
43
+ import pandas as pd
44
+
45
+ df = pd.read_excel("Book1.xlsx",header=None)
46
+
47
+ print(df)
48
+
49
+ """
50
+
51
+ 0
52
+
53
+ 0 11:21:00
54
+
55
+ 1 11:22:00
56
+
57
+ 2 11:23:00
58
+
59
+ 3 11:24:00
60
+
61
+ (中略)
62
+
63
+ 49 12:10:00
64
+
65
+ """
66
+
67
+ ```