Suppose I write a line in python as:
result_string = f"panel_index_numbers={(','.join(str(n) for n in panel_index_numbers).replace(',', ':'))}"
How can I write without errors by separating the datas inside the curly braces in two different lines,
i.e. in first line the datas should be : result_string = f"panel_index_numbers={(','.join(str(n) for and in the second line the datas should be n in panel_index_numbers).replace(',', ':'))}". I need to write it in 2 separate lines as  in one particular line the bytes should be upto 79 bytes.
 
    