Output not in one line


why is the verion name and date evrything are in seperate line.

as per the code details of single version should be in the same line and the details of the next version sholud start fron a new line

filename = ‘android_version_history.csv’
with open(filename,‘w’, encoding = ‘utf-8’) as f:
header_string = ‘,’.join(column_titles)
header_string += ‘\n’
f.write(header_string)

for row in table_rows:
    row_string = ""
    row_string = ','.join(row)
    row_string += '\n'
    f.write(row_string)

hey @ayushU2x ,
it shouldn’t be as such.
Can you please share your complete code.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.