Skip to content

Instantly share code, notes, and snippets.

@jacobmischka
Created February 1, 2015 00:09
Show Gist options
  • Save jacobmischka/1e0b6a531944020122dc to your computer and use it in GitHub Desktop.
Save jacobmischka/1e0b6a531944020122dc to your computer and use it in GitHub Desktop.
test = open("test.log")
nestest = open("nestest.log")
lineCount = 0
for testLine, nestestLine in zip(test, nestest):
if testLine[1:5] != nestestLine[:4]:
print(testLine)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment