Arrondir Py
import math
round(7.6) # return 8
math.floor(7.6) # return 7
math.floor(7.699999) # return 7
math.ceil(7.6) # return 8
Disturbed Deer
import math
round(7.6) # return 8
math.floor(7.6) # return 7
math.floor(7.699999) # return 7
math.ceil(7.6) # return 8