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)