Posts by Leonardo Gomes • 1 point
1 post
-
-2
votes1
answer132
viewsA: Error with append with python csv file
with open('\\offline.csv', 'a', encoding='utf-8', newline='') as f: Aim to do this line without the newline: with open('\\offline.csv', 'a', encoding='utf-8') as f:…