回答編集履歴

1

代入をinplace=Trueに変更

2020/09/15 18:14

投稿

yymmt
yymmt

スコア1615

test CHANGED
@@ -6,6 +6,6 @@
6
6
 
7
7
  ```python
8
8
 
9
- data = data.drop_duplicates(ignore_index=True)
9
+ data.drop_duplicates(ignore_index=True, inplace=True)
10
10
 
11
11
  ```