#函數(shù)的返回值
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)
打印結(jié)果:
one
two
three
None
0
(1, 'hello', ['alex', 'wupeiqi'], {'name': 'alex'})
1犀勒、無返回值時,返回的是none?
2痰驱、返回為0 時肩民,返回0
3蔽豺、返回多個值時,返回的是一個元祖