I am reading through the lines of a file using the code for index, line in enumerate(lines):.  I can access the string of the current line using (line).
Is it possible to access the next line to look ahead?  I have tried to access this by using next_line = line(index + 1) but this is creating an error.
Code
with open(sys.argv[1]) as f1:
    with open(sys.argv[2], 'a') as f2:
        lines = f1.readlines()
        prev_line = ""
        string_length = 60
        for index, line in enumerate(lines):
            next_line = line(index + 1)
            print(f'Index is {index + 1}')
            # Do something here
 
     
    