python csv écrire Ajouter une nouvelle ligne

with open('output.csv', 'w', newline='\n', encoding='utf-8') as f:
    writer = csv.writer(f)
    ...
Proud Polecat