My code looks like this.
import csv
name = input("entername")
with open('details.csv','a') as csvDataFile:
csvWriter = csv.writer(csvDataFile)
csvWriter.writerow(name)
When i run it, and say my name was name, the csv file would look like this:
n a m e
with each of the letters being in seperate cells, how do i get them into one, without using a list.