recherche

Maison  >  Questions et réponses  >  le corps du texte

Python3的问题

>>> items = [1, 10, 7, 4, 5, 9]
>>> def sum(items):
... head, *tail = items
... return head + sum(tail) if tail else head
>>> sum(items)
36
>>>

谁能帮忙解释下为什么第四行的时候要用:
if tail else head 
这是什么意思呢?详细讲述下过程,多谢。

高洛峰高洛峰2938 Il y a quelques jours647

répondre à tous(1)je répondrai

  • 三叔

    三叔2016-11-17 15:59:11

    http://wangye.org/blog/archives/690/


    répondre
    0
  • Annulerrépondre