Answers for "remove duplicates in words in text file python"

0

txt file duplicate line remover python

lines_seen = set() # holds lines already seen

with open("file.txt", "r+") as f:
    d = f.readlines()
    f.seek(0)
    for i in d:
        if i not in lines_seen:
            f.write(i)
            lines_seen.add(i)
    f.truncate()
Posted by: Guest on September-19-2020
4

python remove duplicates words from string

def unique_list(l):
    ulist = []
    [ulist.append(x) for x in l if x not in ulist]
    return ulist

a="calvin klein design dress calvin klein"
a=' '.join(unique_list(a.split()))
Posted by: Guest on February-23-2020

Code answers related to "remove duplicates in words in text file python"

Python Answers by Framework

Browse Popular Code Answers by Language