Pyexcel works great with both Python2 and Python3 without troubles.
Fast installation with pip:
pip install pyexcel
After that, only 3 lines of code and the job is done:
import pyexcel
data = [['Me', 'You'], ['293', '219'], ['54', '13']]
pyexcel.save_as(array = data, dest_file_name = 'csv_file_name.csv')