Message 99773 - Python tracker (original) (raw)
Complex uses left alignment by default, but should use right alignment like the other numeric types.
format(1+1j, '20.0') '(1+1j) '
format(1.0, '20.0') ' 1e+00'
format(1, '20') ' 1'
Complex uses left alignment by default, but should use right alignment like the other numeric types.
format(1+1j, '20.0') '(1+1j) '
format(1.0, '20.0') ' 1e+00'
format(1, '20') ' 1'