csv

How to print special characters like Beta, alpha, Phi while using CSV writer in Python

This is my second blog post and gosh, I am loving it here. So here it goes. I had a requirement where I had to print the special greek characters like Alpha, beta, omega, Phi etc in excel using CSV module. Since I am pretty new to the platform, I searched around in the wonderful …

How to print special characters like Beta, alpha, Phi while using CSV writer in Python Read More »

Blank row getting inserted between each row of excel while using CSV writer in Python

I have recently started working on phyton and I just love it. And now I wonder why I didn’t get an opportunity to start earlier. So here it is. I was trying to write a CSV file. Below is the sample code for the same. import csv with open(’emissions.csv’, ‘w’, encoding=”utf-32″) as csvfile:     filewriter = …

Blank row getting inserted between each row of excel while using CSV writer in Python Read More »