Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #92348
| From | Serhiy Storchaka <storchaka@gmail.com> |
|---|---|
| Subject | Re: Cheat sheet for the new string formatting? |
| Date | 2015-06-08 23:48 +0300 |
| References | <CANc-5Uyv8Ma3G-JfRh7PT-yf4QzJaWnqgyYN9c8=mrnGx_5yRQ@mail.gmail.com> <CANc-5UxhxqE2P_U11Ut98Re6Eq+siXTXcrbtG+w09yX9UpvkRw@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.303.1433796531.13271.python-list@python.org> (permalink) |
On 08.06.15 23:32, Skip Montanaro wrote:
> This is counterintuitive:
>
> >>> "{:.3}".format(-0.00666762259822)
> '-0.00667'
> >>> "{:.3f}".format(-0.00666762259822)
> '-0.007'
> >>> "%.3f" % -0.00666762259822
> '-0.007'
> >>> "{:.3s}".format(-0.00666762259822)
> ValueError Unknown format code 's' for object of type 'float'
>
> Why does the first form display five digits after the decimal point? Why
> don't floats support "{:.Ns}"? (I know I can use "{!s}".)
"{:.3}" for floats is equivalent to "{:.3g}".
>>> "{:.3g}".format(-0.00666762259822)
'-0.00667'
>>> "%.3g" % -0.00666762259822
'-0.00667'
Format code 's' would produce incorrect and meaningless output for floats.
>>> "{!s:.3}".format(-0.00666762259822)
'-0.'
>>> "%.3s" % -0.00666762259822
'-0.'
>>> "{!s:.3}".format(-0.0000666762259822)
'-6.'
>>> "%.3s" % -0.0000666762259822
'-6.'
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Cheat sheet for the new string formatting? Serhiy Storchaka <storchaka@gmail.com> - 2015-06-08 23:48 +0300
csiph-web