如何在 Python 中的函数中返回一个对象?
在 return 语句 中,Python 函数 退出并向调用者返回一个值。一般来说,函数的目标是输入数据并返回一些信息。return 语句在执行后,会立即停止函数的执行,即使它不是函数中的最后一条语句也是如此。
返回值的函数有时被称为 fruitful 函数。
示例
def sum(a,b): return a+b sum(5,16)
输出
21
Python 中几乎所有内容都是一个对象。 列表、字典 和元组也是 Python 对象。以下代码展示了一个返回 Python 对象(即字典)的 Python 函数。
示例
# This function returns a dictionary def foo(): d = dict(); d['str'] = "Tutorialspoint" d['x'] = 50 return d print foo()
输出
{'x': 50, 'str': 'Tutorialspoint'}
广告