duplicat : init

This commit is contained in:
minoplhy 2022-03-11 14:25:34 +07:00
parent dff9be3c3c
commit 353570725a
Signed by: minoplhy
GPG Key ID: 90667A59A9908AEC
1 changed files with 32 additions and 0 deletions

32
duplicat.py Normal file
View File

@ -0,0 +1,32 @@
def add_file(input, output):
with open(input, 'r') as f:
lines = f.read().split()
with open(output, 'a') as f:
for line in lines:
f.write('\n'.join([line + '\n']))
f.close()
print('Getting rid of duplicated line')
with open(output, 'r') as f:
lines = set(f.readlines())
with open(output, 'w') as f:
f.writelines(set(lines))
f.close()
def check_n_kill_dupes(duperuleset, input):
with open(duperuleset, 'r') as s:
ruleset = s.read().split()
with open(input, 'r') as f:
lines = f.read().split()
with open(input, 'w') as f:
for line in lines:
if not line in ruleset:
f.write('\n'.join([line + '\n']))
f.close()
# Remove Blank Line
with open(input ,'r') as f:
lines = f.read().split()
with open(input ,'w') as f:
for line in lines:
if line.strip():
f.write('\n'.join([line + '\n']))
f.close()