Have Python output .csv with space-padded, fixed width, but comma-separated columns?
Let’s say I have CSV data as note below; let’s call this original.csv: name,value1,value2 firstname,34326408129478932874,553 secondname_a_very_long_one,65,123987 thirdname_medium,9686509933423,33 Basically, it’s either single word text (no space separation, so no need for quoting) or numbers (here integers, but could be floats with decimals or scientific 1e-5 notation) – and there is no expectation that a comma could… Read More Have Python output .csv with space-padded, fixed width, but comma-separated columns?