编写函数f(m,n),计算并返回
。在主程序中输入m和n,调用函数f(),计算并输出函数值。 输入格式:=map(int,input().split())
输出格式:"{}".format()
例如: 输入10 20
输出8426
def f(m, n):
total = 0
for x in range(m, n + 1):
total += 3 * x**2 + 4 * x + 1
return total
# 主程序
m, n = map(int, input().split())
result = f(m, n)
print("{}".format(result))
标签:map,format,Python,int,循环,result,程序设计,total,split
From: https://blog.csdn.net/m0_62222486/article/details/139395459