 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP 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
Write a program in Python to check if a series contains duplicate elements or not
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
 