Skip to content

Instantly share code, notes, and snippets.

@EncodeTheCode
Created June 9, 2021 13:15
Show Gist options
  • Save EncodeTheCode/3d7ad9bdce73d3ffe0ed3f9f6742fb96 to your computer and use it in GitHub Desktop.
Save EncodeTheCode/3d7ad9bdce73d3ffe0ed3f9f6742fb96 to your computer and use it in GitHub Desktop.
# part1: https://gist.github.com/EncodeTheCode/7eb9a1a9afd4429972042d95b8a4dac3
# part2: https://gist.github.com/EncodeTheCode/c3fbfa5e33cf2a331f7e6dc3b24ef3bc
# part3: https://gist.github.com/EncodeTheCode/69ad52b1f00c22d69cc41fa03dfe42dc
data=data2=data3=""
with open('7eb9a1a9afd4429972042d95b8a4dac3') as fp:data=fp.read()
with open('c3fbfa5e33cf2a331f7e6dc3b24ef3bc') as fp:data2=fp.read()
with open('69ad52b1f00c22d69cc41fa03dfe42dc') as fp:data3=fp.read()
data+=data2
data2+=data3
with open ('69ad52b1f00c22d69cc41fa03dfe42dc','w') as fp:fp.write(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment