Frank Millman wrote:
> >>> '{}'.format(True)
> 'True'
> >>> '{:<10}'.format(True)
> '1 '
>
> One might want to format True/False in a fixed width string, but it
> returns 1/0 instead. Is there any way to make this work?
>>> "{!s:<10}".format(True)
'True '
--
http://mail.python.org/mailman/listinfo/python-list
