Answers for "get duplicate values from series python"

1

how to check for duplicates in a column in python

boolean = df['Student'].duplicated().any() # True
Posted by: Guest on April-10-2021
2

how to find duplicate numbers in list in python

l=[1,2,3,4,5,2,3,4,7,9,5]
l1=[]
for i in l:
    if i not in l1:
        l1.append(i)
    else:
        print(i,end=' ')
Posted by: Guest on June-06-2021

Code answers related to "get duplicate values from series python"

Python Answers by Framework

Browse Popular Code Answers by Language