美文网首页
函数返回值1

函数返回值1

作者: Mrxiaowang | 来源:发表于2017-12-27 15:40 被阅读6次

    #函数的返回值

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

    相关文章

      网友评论

          本文标题:函数返回值1

          本文链接:https://www.haomeiwen.com/subject/sbuugxtx.html