gpt4 book ai didi

python - 函数返回多个值是pythonic吗?

转载 作者:IT老高 更新时间:2023-10-28 21:31:35 25 4
gpt4 key购买 nike

在python中,你可以让一个函数返回多个值。这是一个人为的例子:

def divide(x, y):
quotient = x/y
remainder = x % y
return quotient, remainder

(q, r) = divide(22, 7)

这看起来很有用,但看起来它也可能被滥用(“嗯..函数 X 已经计算出我们需要的中间值。让 X 也返回那个值”)。

什么时候应该画线并定义不同的方法?

最佳答案

绝对(对于您提供的示例)。

元组是 Python 中的一等公民

有一个内置函数divmod()正是这样做的。

q, r = divmod(x, y) # ((x - x%y)/y, x%y) Invariant: div*y + mod == x

还有其他示例:zipenumeratedict.items

for i, e in enumerate([1, 3, 3]):
print "index=%d, element=%s" % (i, e)

# reverse keys and values in a dictionary
d = dict((v, k) for k, v in adict.items()) # or
d = dict(zip(adict.values(), adict.keys()))

顺便说一句,大多数时候括号不是必需的。引自 Python Library Reference :

Tuples may be constructed in a number of ways:

  • Using a pair of parentheses to denote the empty tuple: ()
  • Using a trailing comma for a singleton tuple: a, or (a,)
  • Separating items with commas: a, b, c or (a, b, c)
  • Using the tuple() built-in: tuple() or tuple(iterable)

函数应该服务于单一目的

因此,它们应该返回单个对象。在您的情况下,此对象是一个元组。将元组视为一种特殊的复合数据结构。有些语言几乎每个函数都返回多个值(Lisp 中的列表)。

有时返回 (x, y) 而不是 Point(x, y) 就足够了。

命名元组

随着 Python 2.6 中命名元组的引入,在许多情况下,最好返回命名元组而不是普通元组。

>>> import collections
>>> Point = collections.namedtuple('Point', 'x y')
>>> x, y = Point(0, 1)
>>> p = Point(x, y)
>>> x, y, p
(0, 1, Point(x=0, y=1))
>>> p.x, p.y, p[0], p[1]
(0, 1, 0, 1)
>>> for i in p:
... print(i)
...
0
1

关于python - 函数返回多个值是pythonic吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61605/

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