Skip to content

Instantly share code, notes, and snippets.

@ssorgatem
Created February 5, 2015 10:44
Show Gist options
  • Select an option

  • Save ssorgatem/01a4b266657cb0e38993 to your computer and use it in GitHub Desktop.

Select an option

Save ssorgatem/01a4b266657cb0e38993 to your computer and use it in GitHub Desktop.
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