質問編集履歴

1

indexの定義を書き忘れていたので編集。ちゃんとint型にキャストしたのですが、、、

2019/07/08 07:20

投稿

sho0423
sho0423

スコア31

test CHANGED
File without changes
test CHANGED
@@ -122,6 +122,8 @@
122
122
 
123
123
  ```python
124
124
 
125
+ index = [list(map(int,[x for x in df2.index[i].split(",")])) for i in range(len(df2.index))]
126
+
125
127
  datetime.date(*index[0])
126
128
 
127
129
  ```