About 3,020,000 results
Open links in new tab
  1. python - How can I format a decimal to always show 2 decimal …

    the Python String Format Cookbook: shows examples of the new-style .format() string formatting pyformat.info: compares the old-style % string formatting with the new-style .format() string …

  2. python - Need help understanding the format ".2f" command and …

    I am specifically trying to understand the format command using the ".2f" command this is the code i currently have, the second line runs before it returns and error:

  3. how to change 39.54484700000000 to 39.54 and using python

    Possible Duplicate: python limiting floats to two decimal points i want to set 39.54484700000000 to 39.54 using python , how to get it , thanks

  4. How to apply "%.02f" in Python format function? - Stack Overflow

    I'm new to python, recently I have migrated to Python 3 and I'm trying to get used to the format() function. What I'm trying to do is to print() the temperature I create in floating-points, like ...

  5. Python 3: Como entender essa string - Stack Overflow em Português

    Boa tarde Francisco, tudo bom? Francisco, sobre o ':6.2f' é o seguinte: Isto corresponde a uma formatação de saída no Python chamada Strings Literais Formatadas ou f-strings, como …

  6. python - Limiting floats to two decimal points - Stack Overflow

    Jan 19, 2009 · From Python 3 documentation page: Note The behavior of round() for floats can be surprising: for example, round(2.675, 2) gives 2.67 instead of the expected 2.68. This is not a …

  7. Como limitar números decimais em Python? - Stack Overflow em …

    Oct 29, 2020 · Como faço para formatar a quantidade de casas decimais de um número decimal em Python? Por exemplo, eu quero exibir apenas duas casas decimais do seguinte número: …

  8. python - Formatting floats in a numpy array - Stack Overflow

    If I have a numpy array like this: [2.15295647e+01, 8.12531501e+00, 3.97113829e+00, 1.00777250e+01] how can I move the decimal point and format the numbers so I end up with …

  9. python - Fixed digits after decimal with f-strings - Stack Overflow

    Is there an easy way with Python f-strings to fix the number of digits after the decimal point? (Specifically f-strings, not other string formatting options like .format or %) For example, let's s...

  10. python - How to display a float with two decimal places ... - Stack ...

    I have a function taking float arguments (generally integers or decimals with one significant digit), and I need to output the values in a string with two decimal places (5 → 5.00, 5.5 → 5.50, etc)...