以下函数要计算 x 的 n 次方, 则应补充选项为? ( )
def power(x, n):
s = 1
while n < 0:
_________
s = s * x
return s
n = n
n = n+1
n = n-2
n = n-1