“Python usuwa duplikaty” Kod odpowiedzi

Usuń duplikaty z pandy

import pandas as pd

# Drop all duplicates in the DataFrame
df = df.drop_duplicates()

# Drop all duplicates in a specific column of the DataFrame
df = df.drop_duplicates(subset = "column")

# Drop all duplicate pairs in DataFrame
df = df.drop_duplicates(subset = ["column", "column2"])

# Display DataFrame
print(df)
Elisabeth Engering

Python Usuń duplikaty z listy

mylist = ["a", "b", "b", "c", "a"]
mylist = sorted(set(mylist))
print(mylist)

Usuń cały wiersz, usuwając duplikaty za pomocą Pythona

result_df = df.drop_duplicates(subset=['Column1', 'Column2'], keep='first')
print(result_df)
Doubtful Dugong

Python usuń duplikaty z listy

# HOW TO REMOVE DUPLICATES FROM A LIST:
# 1) CREATE A LIST
my_list = [1, 2, 3, 4, 5, 5, 5, 1]
# 2) CONVERT IT TO A SET AND THEN BACK INTO A LIST
my_list = list(set(my_list))
# 3) DONE! 
print(my_list) #WILL PRINT: [1, 2, 3, 4, 5]
Famous Flatworm

Python usuwa duplikaty

word = input().split()

for i in word:
  if word.count(i) > 1:
    word.remove(i)
Relieved Ray

Python usuwa duplikaty

tempA = []  
uniqueDict = dict()
for key, val in thisdict.items():
    if val not in tempA:
        tempA.append(val)
        uniqueDict[key] = val
Elated Eel

Odpowiedzi podobne do “Python usuwa duplikaty”

Pytania podobne do “Python usuwa duplikaty”

Więcej pokrewnych odpowiedzi na “Python usuwa duplikaty” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu