#函数的返回值
def test1():
print "one" #无return 返回none
def test2():
print "two"
return 0 #返回0
def test3():
print ('three')
return 1,'hello',['alex','wupeiqi'],{'name':"alex"}#返回值多个值,返回的是元祖
x=test1()
y=test2()
w=test3()
print (x)
print (y)
print (w)
打印结果:
one
two
three
None
0
(1, 'hello', ['alex', 'wupeiqi'], {'name': 'alex'})
1、无返回值时,返回的是none
2、返回为0 时,返回0
3、返回多个值时,返回的是一个元祖
网友评论