有如下Python程序,执行该程序后输出的结果是?( ) def jc(a): if a ==1 : return 1 else: return a * jc(a-1) print(jc(jc(3)))
3
6
120
720