回答編集履歴

1

一部修正

2020/11/22 12:12

投稿

toast-uz
toast-uz

スコア3266

test CHANGED
@@ -50,9 +50,11 @@
50
50
 
51
51
  # ここからが回答本体
52
52
 
53
+ x = 3
54
+
53
55
  df2.columns = df1.columns
54
56
 
55
- df = pd.concat([df1[:3], df2, df1[3:]]).reset_index(drop=True)
57
+ df = pd.concat([df1[:x], df2, df1[x:]]).reset_index(drop=True)
56
58
 
57
59
 
58
60