📜  python 输出参数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:40.783000             🧑  作者: Mango

代码示例1
# There is no reason to, since Python can return multiple values via a tuple:

def func():
    return 1,2,3

a,b,c = func()