标签: python recursion
def g(n): for i in xrange(n): h(i)
h指的是您正在调用的外部函数。你怎么能把这个函数变成python中的递归函数?
答案 0 :(得分:1)
def g(n): if not n: return g(n-1) h(n-1)