Here's an idea in case you don't want to keep all lines in memory:
def lines(fname, numbers):
numbers = sorted(numbers, reverse=True)
with open(fname) as f:
for n, line in enumerate(f, 1):
if n == numbers[-1]:
yield line
numbers.pop()
if not numbers:
break
Links to docs:
EDIT: if you're okay with reading the whole file at once (and want to return a list of lines), you can use readlines() to get a list of all lines, but to me it doesn't make sense anyway, so I'd do what I showed above. However, you can do:
def lines(fname, numbers):
with open(fname) as f:
lines = f.readlines()
return [lines[i] for i in numbers]
Change lines[i] to lines[i+1] if you want "natural" numbering.
Edit2: Then you still need to write two new files: one with these lines and one with the rest of the lines. To do it, open files and use the file object's writelines method.