I have a data table 44 columns wide that I need to write to file. I don't want to write:
outfile.write("%i,%f,%f,$f ... )\n" % (i, a,b,c ...))
In Fortran you can specify multiple format specifiers easily:
write (*,"(3f8.3)") a,b,c
Is there a similar capability in Python?