函式返回值1

weixin_34075268發表於2017-12-27

#函式的返回值

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、返回多個值時,返回的是一個元祖

相關文章