What is the output of the following code ?
p = round(1.61) - round(-1.61) e = round(0.5) - round(-0.5) print(p, e)
Refer to - https://docs.python.org/3/library/functions.html#round
Comment here: