Appending a String as a newline in a CSV file

suggest change
def append_to_csv(input_string):
    with open("fileName.csv", "a") as csv_file:
        csv_file.write(input_row + "\n")

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents