I have a CSV file, which has
spam
in it. Then, i did
with open(directory, "a") as config_csv:
writer = csv.writer(config_csv)
writer.writerow(["something"])
writer.writerow(["something else"])
I expected
spam
something
something else
Instead, I got
spam
"something"
"something else"
How do I get the thing I want?