I am searching for the functionality in Jython, that the ouput of a float only has decimal points when it isn't an integer.
I've found:
>>> x = 23.457413902458498
>>> s = format(x, '.5f')
>>> s
'23.45741'
But
>>> y=10
>>> format(y, '.2f')
'10.00'
In this case I would like to have only
'10'
Can you help me?!
Thank you for your help!!!
Try the 'g' (for "general") format specification for floats (docs):
Notice that the number given isn't digits after the decimal point, it's precision (number of significant digits), which is why the first example keeps 4 digits from the input.
If you want to specify digits after the decimal point but remove trailing zeros, implement this directly: