About 179,000 results
Open links in new tab
  1. Why does Python 3 round half to even? - Stack Overflow

    I was just re-reading What’s New In Python 3.0 and it states: The round() function rounding strategy and return type have changed. Exact halfway cases are now rounded to the nearest even result in...

  2. python - Round number to nearest integer - Stack Overflow

    round(x) will round it and change it to integer. You are not assigning round(h) to any variable. When you call round(h), it returns the integer number but does nothing else; you have to change that line for:

  3. How to properly round-up half float numbers? - Stack Overflow

    @simomo Python's round() function used to round up in older versions, but they switched the rounding strategy to half to even in Python 3. It was a deliberate choice because this produces better results.

  4. python - How do you round UP a number? - Stack Overflow

    May 5, 2017 · How does one round a number UP in Python? I tried round (number) but it rounds the number down. Here is an example: round (2.3) = 2.0 and not 3, as I would like. Then I tried int …

  5. How to round to 2 decimals with Python? [duplicate]

    Dec 9, 2013 · How to round to 2 decimals with Python? [duplicate] Asked 12 years ago Modified 1 year, 8 months ago Viewed 2.3m times

  6. python - Simple way to round floats when printing - Stack Overflow

    Apr 23, 2015 · Simple way to round floats when printing Asked 10 years, 7 months ago Modified 9 years ago Viewed 16k times

  7. Python setting Decimal Place range without rounding?

    Mar 25, 2015 · How can I take a float variable, and control how far out the float goes without round()? For example. w = float(1.678) I want to take x and make the following variables out of it. x = 1.67 y = ...

  8. round() doesn't seem to be rounding properly - Stack Overflow

    The documentation for the round() function states that you pass it a number, and the positions past the decimal to round. Thus it should do this: n = 5.59 round(n, 1) # 5.6 But, in actuality, good...

  9. Round up to second decimal place in Python - Stack Overflow

    55 Python includes the round() function which lets you specify the number of digits you want. From the documentation: round(x[, n]) Return the floating point value x rounded to n digits after the decimal …

  10. Python built-in function source code - round () - Stack Overflow

    Sep 6, 2017 · Problem I want to access the source code the built-in function round(), to allow me to create a very similar function. How can i access this source code and how easily will this be to edit / …