Answers for "print float round off to two decimal places and double to 4 decimal places."

5

round off float to 2 decimal places in python

answer = str(round(answer, 2))
Posted by: Guest on May-24-2020
0

Round a float two decimal points

>>> print("{:.2f}".format(a))
13.95
Posted by: Guest on May-27-2021
0

how to round Double to 2 digit decimals

import java.math.BigDecimal
import java.math.RoundingMode
val decimal = BigDecimal(3.14159265359).setScale(2, RoundingMode.HALF_EVEN)
println(decimal) // 3.14
Posted by: Guest on October-13-2021

Code answers related to "print float round off to two decimal places and double to 4 decimal places."

Python Answers by Framework

Browse Popular Code Answers by Language