round without decimal in python code example
Example 1: round off float to 2 decimal places in python
answer = str(round(answer, 2))
Example 2: round down decimal python
import math
val = 3.14
math.floor(val) # rounds down --> 3
math.ceil(val) # rounds up val --> 4