You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

942 B

In [ ]:
quilt = open("my-fantastic-quilt", 'w')

for row in patches:

    for linenumber in range(74):

    line = ''

    for patch in row:

    line += open(patch).readlines()[linenumber]

    print(patch[line], nolineending, file=quilt)

    print(line)