美文网首页
Python: Return

Python: Return

作者: Andy512 | 来源:发表于2019-06-19 20:46 被阅读0次

In the self-defined function, maybe there are many items to be returned. In this case, it will be better to return a dictionary:

The commonly used:

def my_fun()
    # some operations
    return item1, item2, item3, item4

With dict:

def my_fun()
      # some operations
      return {"item1": value1,
                  "item2": value2,
                   "item3": value3,
                   "item4": value4}

相关文章

  • Python 中return用法及意义

    1.python 中 return用法 The key word "return" which should be...

  • Python: Return

    In the self-defined function, maybe there are many items ...

  • return;debug。

    python def函数 没有return/return后没有参数,则返回None值 return跳出函数窗口,执...

  • python-复盘-yield & return区别

    python-复盘-yield & return区别

  • Python: 浅析 return 和 finally 共同挖的

    初识 return 相信每一个用过Python函数的童鞋, 肯定会用过return语句, return顾名思义, ...

  • 函数

    1.函数返回值 return 后面可以接多个值 return 'abc',[42,'python'],'guido...

  • Python: return语句

    环境:Windows 10 64-bit, python == 3.6.4 , PyCharm CE == 201...

  • Python--return

    return:返回 有些小伙伴对return的用法有点蒙逼,小编今天给大家举个例,马上就明白了 大家都知道prin...

  • python yield return 区别

    yieldyield是用于生成器。什么是生成器,你可以通俗的认为,在一个函数中,使用了yield来代替return...

  • python的return问题

    考虑下面四个函数: 下面是运行结果: 除了第三个函数是返回(),其余三个函数均返回一个空值。虽然看上去它们没啥差别...

网友评论

      本文标题:Python: Return

      本文链接:https://www.haomeiwen.com/subject/xqulqctx.html