黑猴子的家:python 函数返回值 一

code

# Author:黑猴子

def t1():
    pass

def t2():
    return 0

def t3():
    return 0, 'hello', ['a', 'b', 'c'], {'name': 'alex'}

x = t1()
y = t2()
z = t3()

print(x)
print(y)
print(z)

打印

None
0
(0, 'hello', ['a', 'b', 'c'], {'name': 'alex'})

你可能感兴趣的:(黑猴子的家:python 函数返回值 一)