回答編集履歴

1

ソースの修正

2020/03/07 21:19

投稿

yureighost
yureighost

スコア2183

test CHANGED
@@ -32,6 +32,8 @@
32
32
 
33
33
  df = df[(~df['email'].duplicated()) | (df['email'].isna())]
34
34
 
35
+ df = df[(~df['tel'].duplicated()) | (df['tel'].isna())]
36
+
35
37
  print(df)
36
38
 
37
39
  ```