a = [9.0, 0.052999999999999999, 0.032575399999999997, 0.010892799999999999, 0.055702500000000002, 0.079330300000000006]
print(", ".join(f'{x:.2f}' for x in a))
f'{x}'
means f-string equal to str(x)
; f'{x:.2f}'
means x
will be present as float number with two decimal places.