有如下Python程序,运行后fac(a)函数被调用了几次?
def fac(a):
if a == 1:
return 1
else:
return a + fac(a-1)
print(fac(6))
5
6
7
8