Post

@PythonPr Answer: 17
Solution: x is 2 and y is 3.
z is assigned the expression
x**y + y**x
ie
3**2 + 2**3
There are 2 operations here: ** that denotes exponentiation, and + for addition.
** has higher precedence, so it's performed first.
3**2 is 9
2**3 is 8
9+8 is 17, that's printed.
English

