[Tutor] float question

linda.s samrobertsmith at gmail.com
Tue Dec 20 09:51:34 CET 2005


On 12/20/05, Danny Yoo <dyoo at hkn.eecs.berkeley.edu> wrote:
>
>
> On Mon, 19 Dec 2005, linda.s wrote:
>
> > what does 2 mean in %2.4f ?
>
> Hello,
>
> It's a "minimal field width" modifier, according to:
>
>    http://docs.python.org/lib/typesseq-strings.html
>
>
> Let's try experimenting with it.
>
> ######
> >>> '%20f' % 3.14
> '            3.140000'
> >>> '%20.2f' % 3.14
> '                3.14'
> ######
>
>
> Does this make sense?  If you have more questions, please feel free to
> ask.

Danny,
Thanks. Still confused. I changed the code a little.
>>> '%3.2f' % 3.14
'3.14'
>>> '%4.2f' % 3.14
'3.14'
there is no difference in the above two codes. so what does 3 and 4 mean?


More information about the Tutor mailing list