小编use*_*134的帖子

什么是减法函数,类似于sum(),用于减去列表中的项目?

我正在尝试创建一个计算器,但我在编写一个将从列表中减去数字的函数时遇到问题.
例如:

class Calculator(object):
    def __init__(self, args):
        self.args = args

    def subtract_numbers(self, *args):
        return ***here is where I need the subtraction function to be****
Run Code Online (Sandbox Code Playgroud)

另外,我可以简单地使用return sum(args)来计算总数,但我不确定我能为减法做些什么.

python sum function subtraction

9
推荐指数
2
解决办法
2万
查看次数

标签 统计

function ×1

python ×1

subtraction ×1

sum ×1