#利用函数的递归计算数字的阶乘num = int(input("请输入需要阶乘计算的数字>>>"))def getNums(num): if num >1: return num * getNums(num-1) else: return numprint(getNums(num))