I feel a bit silly for asking what I'm sure is a rather basic question, but I've been learning Python and I'm having difficulty understanding what exactly the "g" and "G" string formats actually do.
The documentation has this to say:
Floating point format. Uses lowercase exponential format if exponent is less than -4 or not less than precision, decimal format otherwise.
I'm sure this is supposed to make sense, but I'm just not getting it. Can someone provide a clearer explanation for this format, and possibly provide some examples of when and how it should be used, vs. just using "e" or "f".
Thanks
%g? This would probably give you a good idea... – André Caron Nov 26 '11 at 22:32printf, the basic idea for them and the specific codes ("F", "E", and "G") were first used in various FORTRAN implementations in the late 1950's and 60's. – Ned Deily Nov 26 '11 at 23:00