Anonymous
public python v1 · immutabledef recursivetest(a, depth=3): if depth > 0: return recursivetest(a * 2, depth - 1) else: return aprint(recursivetest(3))def recursivetest(a, depth=3): if depth > 0: return recursivetest(a * 2, depth - 1) else: return aprint(recursivetest(3))