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:


Writing to CSV from String or List:
*Appending a String as a newline in a CSV file

Table Of Contents
31Set
166Gzip
188Writing to CSV from String or List