What is the output of the following code ?
print(round(234.56789))
235
234.6
234.568
234.57
round(number[, ndigits]) - Return number rounded to ndigits precision after the decimal point. If ndigits is omitted or is None, it returns the nearest integer to its input.
Comment here: