
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check for Duplicate Elements in a Series using Python
Input − Assume, you have the following series,
0 1 1 2 2 3 3 4 4 5
The above series contains no duplicate elements. Let’s verify using the following approaches.
Solution 1
Assume, you have a series with duplicate elements
0 1 1 2 2 3 3 4 4 5 5 3
Set if condition to check the length of the series is equal to the unique array series length or not. It is defined below,
if(len(data)==len(np.unique(data))): print("no duplicates") else: print("duplicates found")
Example
import pandas as pd import numpy as np data = pd.Series([1,2,3,4,5]) result = lambda x: "no duplicates" if(len(data)==len(np.unique(data))) else "duplicates found!" print(result(data))
Output
no duplicates
Solution 2
Example
import pandas as pd import numpy as np data = pd.Series([1,2,3,4,5,3]) if(len(data)==len(np.unique(data))): print("no duplicates") else: print("duplicates found")
Output
duplicates found!
Advertisements