编写函数,求1~n之和,函数原型为def+sum_n(n)?下面是一个通过递归从1到n求和的Python实现:``pythondefsum_n(n):ifn==1:return1else:return...