Last active
October 6, 2015 20:37
-
-
Save shanemhansen/006b2d3ecaf6824ba528 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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