How to REMOVE DUPLICATES from a list | Python

Опубликовано: 30 Октябрь 2024
на канале: Kunal Attri
4
1

You can remove duplicates from a list in python by various methods like using lists or by a user defined function:
Sets:
list2 = list(set(list1))
Function:
def remove_duplicates(arr):
newarr = []
for i in arr:
if i not in newarr:
newarr.append(i)
return newarr


This Program Code:-
Github: https://github.com/Kunal-Attri/Python...
Drive: https://drive.google.com/file/d/1AeYu...

All Python Codes:-
Github: https://github.com/Kunal-Attri/Python...
Drive: https://drive.google.com/drive/folder...

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Subscribe to us for more videos!!!

Music: Ikson - Lights

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Python:    • Python  

Pokemon FireRed:    • Pokemon FireRed  

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you own any rights to the content we use in our videos and want us to provide credits or remove the content , kindly contact us at [email protected] . We will solve it out with a hypothetic cup of tea(●'◡'●) .

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Instagram :-   / kunal.attri_  
Github:- https://github.com/kunal-attri

Like And Subscribe our Channel.......