Which of the following is the correct output for the execution of the following Python statement ?
print(5 + 3 ** 2 / 2)
9.5
According to operator precedence, exponentiation(**) will come first then division then addition.
5 + 3 ** 2 / 2= 5 + 9 / 2= 5 + 4.5= 9.5