Skip to content

Instantly share code, notes, and snippets.

@ryo1kato
Created February 11, 2019 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryo1kato/98cd972d32944729e4c72a77122e0596 to your computer and use it in GitHub Desktop.
Save ryo1kato/98cd972d32944729e4c72a77122e0596 to your computer and use it in GitHub Desktop.
with open("filename.txt") as f:
lineIdx = 0
for line in f:
if lineNo %2 == 1:
print(lastline + "の" + line)
else:
lastline = line
lineIdx += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment