I have an issue while creating a CSV file using the CSV module
csvFp = csv.writer(open(fileName,"w"), delimiter=',')
csvFp .writerow('1')
csvFp .writerow('2')
csvFp .writerow('3')
When i execute the above code,it creates the CSV file correctly but a blank line is inserted between each row eventhough i have not inserted that in the code.
Why is it happening?