✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider the following incomplete Python code. The code is expected to compute xn.
def MyPow(x, n): if n==0: return 1 hp = MyPow(x, n//2) ret = hp*hp if ....(A).... : ret = ret * x return ret
What should fill the blank A to make it work?