Skip to content

Instantly share code, notes, and snippets.

View DanielNanto's full-sized avatar
💭
:)

Daniel Nanto DanielNanto

💭
:)
View GitHub Profile
@rivermont
rivermont / remove-duplicates.py
Last active November 1, 2024 01:31
Simple Python script to remove duplicate lines from a file.
'''
Compares all lines in a given file and removes duplicates.
'''
import sys
import time as t
def get_time():
return t.strftime('%H:%M:%S')