Skip to content

Instantly share code, notes, and snippets.

@shanemhansen
Last active October 6, 2015 20:37
Show Gist options
  • Save shanemhansen/006b2d3ecaf6824ba528 to your computer and use it in GitHub Desktop.
Save shanemhansen/006b2d3ecaf6824ba528 to your computer and use it in GitHub Desktop.
inputFile = open('input.csv')
outputFile = open('output.csv', 'w')
counter = 0
for line in inputFile:
counter+=1
if counter < 4:
continue
outputFile.write(line)
inputFile.close()
outputFile.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment