Paramètre de sortie Python

# There is no reason to, since Python can return multiple values via a tuple:

def func():
    return 1,2,3

a,b,c = func()
Breakable Bee