Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a program to find the duplicates in a list?



Write a program to find the duplicates in a list?..

Answer / Amit Kumar Giri

Here's a Python program that finds duplicates in a list:nn```pythonnlst = [1, 2, 3, 4, 4, 5, 6, 7, 8, 8]ndups = set(lst) # convert list to set to remove duplicatesndups -= set(lst) # find the difference between the original set and the converted set. This gives us the duplicates.nprint(list(dups))```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Python Interview Questions

What is the accomplishment you are most proud of?

1 Answers  


How much ram is required for python?

1 Answers  


Is python better than matlab?

1 Answers  


What is python’s standard way of identifying a block of code?

1 Answers  


Why is the order in python dictionaries and sets arbitrary?

1 Answers  


Explain the difference between append vs extend in list?

1 Answers  


What are metaclasses in python?

1 Answers  


Where can I learn python for free?

1 Answers  


Can you name ten built-in functions in python and explain each in brief?

1 Answers  


We know python is all the rage these days. But to be truly accepting of a great technology, you must know its pitfalls as well. Would you like to talk about this?

1 Answers  


Can you list down some of the pdb commands for debugging python programs?

1 Answers  


What companies use python?

1 Answers  


Categories