Answers for "identify the duplicate from the csv file and remove that duplicate from the file in python"

1

remove duplicate rows in csv file python

# credit to the Stack Overflow user in the source link

with open('file_with_duplicates.csv','r') as in_file, open('ouput.csv','w') as out_file:
  
    seen = set() # set for fast O(1) amortized lookup
    
    for line in in_file:
        if line in seen: 
          continue # skip duplicate

        seen.add(line)
        out_file.write(line)
Posted by: Guest on June-13-2021

Code answers related to "identify the duplicate from the csv file and remove that duplicate from the file in python"

Python Answers by Framework

Browse Popular Code Answers by Language