我在 MyPytutor 上的作业问题遇到了一些麻烦,该问题要求我编写一个函数 sum_from_to(start, end),该函数使用 while 循环来计算从 start 到但不包括 end 的整数之和。
给定的代码是:
def sum_from_to(start, end):
"""Return the sum of the integers from start up to but not including end.
sum_from_to(int, int) -> int
"""
# add your code here: use a while loop
例子:
- sum_from_to(3, 7) 应计算为 18(即 3+4+5+6)。
- sum_from_to(3, 3) 应评估为 0。
我将如何处理这个?我从半年前就看到过同样的问题,但从未解决过。任何帮助将不胜感激,因为我真的坚持这一点!