With Python, how can I select decimal separator for CSV files? In Python float, decimal separator is point, but for my case comma is needed.
According to Dialects and Formatting Parameters, there are no parameter in Dialect for this.
I think, problem may be solved with replacing point with comma like this:
str(my_float).replace('.',',')
But is seems a very ugly.
Thanks in advance.