I\'m trying to use Python 3.2 on a Windows computer to write a simple CSV file, however I\'m having no luck. From the csv module documentation for Python 3.2:
[For Python 2.x] This implementation of spamWriter is working for me...
with open('assignmentresults.csv', 'wb') as csvfile: spamwriter = csv.writer(csvfile, delimiter=',', quotechar='|', quoting=csv.QUOTE_MINIMAL) spamwriter.writerow(["Hullo", "World"])