阅读下列程序,运行结果正确的是?(?)
def power(x,y):
if y==0:
return 1
else:
return x * power(x,y-1)
print(power(4,5))
243
81
1206
1024