回答編集履歴

1

Update

2022/07/19 08:44

投稿

melian
melian

スコア19840

test CHANGED
@@ -1,3 +1,3 @@
1
1
  ```python
2
- df.drop(df.columns[[0, 1]+[*range(5,len(df.columns))]], axis=1, inplace=True)
2
+ df.drop(df.columns[[0, 1, *range(5,len(df.columns))]], axis=1, inplace=True)
3
3
  ```