gpt4 book ai didi

python - Python中数字向量或数字列表的平均值

转载 作者:太空宇宙 更新时间:2023-11-03 13:21:28 26 4
gpt4 key购买 nike

我是 Python 的新手,所以请原谅我天真的问题。

我想编写一个函数,它接受一个数字向量并计算它们的平均值。所以我写了一个小函数作为

def my_mean(*args):
if len(args) == 0:
return None
else:
total = sum(args)
ave = 1.0 * total / len(args)
return ave

my_mean(1, 2, 3)
2.0

但是如果参数是数字列表,这个函数将不起作用。例如,

my_mean([1, 2, 3])
Traceback (most recent call last):
File "/usr/lib/wingide-101-4.1/src/debug/tserver/_sandbox.py", line 1, in <module>
# Used internally for debug sandbox under external interpreter
File "/usr/lib/wingide-101-4.1/src/debug/tserver/_sandbox.py", line 21, in my_mean
TypeError: unsupported operand type(s) for +: 'int' and 'list'

我知道 NumPy 有一个函数 numpy.mean,它接受一个列表作为参数,但不像 my_mean 那样接受数字向量。

我想知道是否有办法让 my_mean 在这两种情况下都能正常工作?所以:

my_mean(1, 2, 3)
2.0
my_mean([1, 2, 3])
2.0

就像 minmax 函数一样?

最佳答案

您可以使用 *arg 语法传入您的列表:

my_mean(*[1, 2, 3])

或者,您可以检测传入的第一个参数是否是一个序列,并使用它来代替整个 args 元组:

import collections

def my_mean(*args):
if not args:
return None
if len(args) == 1 and isinstance(args[0], collections.Container):
args = args[0]
total = sum(args)
ave = 1.0 * total / len(args)
return ave

关于python - Python中数字向量或数字列表的平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12551217/

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