I'm trying to split up a very large text file into multiple smaller ones. When I run the code below, the first created file is correct. Everything after that just contains the 'INSERT INTO ...' string and nothing else. Thanks in advance
import math
interval = 100000
with open('my-big-file','r') as c:
    for i, l in enumerate(c):
        pass
    length = i + 1
    numOfFiles = int(math.ceil(length / interval))
with open('my-big-file','r') as c:
    for j in range(0, numOfFiles):
        with open('my-smaller-file_{}.sql'.format(j),'w') as n:
            print >> n, 'INSERT INTO codes (code, some-field, some-other-field) VALUES'
            for i, line in enumerate(c):
                if i >= j * interval and i < (j + 1) * interval:
                    line = line.rstrip()
                    if not line: continue
                    print >> n, '(%s,'something','something else'),' % (line)
                else:
                    break
 
     
     
    