Skip to content

Instantly share code, notes, and snippets.

@sayz
Last active May 23, 2019 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sayz/01eeeef41b04be39521c503302eb2147 to your computer and use it in GitHub Desktop.
Save sayz/01eeeef41b04be39521c503302eb2147 to your computer and use it in GitHub Desktop.
file1 = open("wrong_ip.txt", encoding="utf-8")
wrongs = file1.readlines()
file2 = open("full_ip.txt", encoding="utf-8")
full_ip = file2.readlines()
file3 = open("match_ip.txt", "w")
match_full = [0,1,2]
for i in wrongs:
for j in range(len(full_ip)):
if i.rstrip() in full_ip[j]:
match_full.append(full_ip[j].rstrip())
if full_ip[j].rstrip() not in match_full[:-1]:
print(full_ip[j].rstrip(), file=file3)
file1.close()
file2.close()
file3.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment