-1
I need to do a CRUD for student registration, and then soon after, convert this data to a spreadsheet, and for now, the save part to. csv is like this:
alunos_json = json.dumps(alunos, indent=True)
with open('abc.csv', 'w+') as file:
file.write(alunos_json)
The problem is: when I open the file with the data of the program, the registered students are below each other:
And I wanted it to be sort of organized that way:
How can I do that?