Created
February 5, 2015 10:44
-
-
Save ssorgatem/01a4b266657cb0e38993 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
| with open(pathway_out, "w") as file_write: | |
| with open(pathway_in, "r") as file_read: | |
| cnt = 0 | |
| for line in file_read: | |
| if cnt == 2: | |
| file_write.write(line) | |
| elif line.startswith('paraula'): | |
| cnt += 1 | |
| if cnt == 2: | |
| break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment