gpt4 book ai didi

python - 比较 Python 中可变数量的非关键字参数

转载 作者:行者123 更新时间:2023-12-01 04:56:32 25 4
gpt4 key购买 nike

我有一个函数,它应该比较任意数量的给定输入值并查看它们是否都具有相同的值

def compare(self, message, *args):
pars = list(args) #since args is stored in a tuple
len = len(pars)



I am not sure how to proceed with the comparison - earlier I was using 2 variables "val1 and val2" which was assuming that I am comparing only 2 variables but i want to make it possible to compare more than 2 parameters.

我有一个想法

     d = 0  #index
for i in pars:
x_d = i
d = d+1

所以 x_d 将是 x_0、x_1、x_2。索引的数量与参数的长度一样多,然后我可以将 x_d (所有这些)放在一个列表中,然后只说 len(set(the_list))==1 .. 类似的东西。不知道是否有更好的方法。

有什么建议吗?

======================我在这里想出了一个解决方案 - 不确定这对于字典如何工作(也许有人可以建议我如何在下面的函数中处理这个问题??)但在这里我将 *args (这是一个元组)转换为列表..

>>> def compare(list):
... if len(params) > 1:
... if len(set(list)) == 1:
... print "MATCH"
... else:
... print "NOT MATCHING"
...
>>> params1 = [ 4, 4, 4]
>>> compare(params1)
MATCH
>>> params = [ 3, 4, 5]
>>> compare(params)
NOT MATCHING

最佳答案

如果您传入的所有项目都是可散列的(因此可以放入集合中),您可以像您想的那样使用集合来完成此操作...

def compare(self, message, *args):
if len(set(args)) > 1:
# not all args are the same
else:
# args are all the same

但是,有些东西(例如列表或字典)不可散列,但仍然可以进行比较。这种情况下,需要进行实际比较:

def compare(self, message, *args):
for item in args[1:]:
if args[0] != item:
# not all args are the same
break
else:
# all args are the same

请注意,为了简洁起见,我在比较中使用了 args[0];您可以通过将 args[0] 的值存储在变量中来节省一些查找,但您还需要检查以确保 args 的长度不是-零。

另请注意,后一种方法实际上比 set 方法高效。为什么?因为它可能会短路 - 如果 args 中有 1000 个元素,但前两个不相等,那么第一个方法仍将读取所有 1000 个值,而第二个方法将立即退出读完第一对后。

关于python - 比较 Python 中可变数量的非关键字参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27221819/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com