Python之路16-函数返回值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python之路16-函数返回值相关的知识,希望对你有一定的参考价值。

#函数返回值
def test1():
    print (‘in the test1‘)
    return 0
    print (‘test end‘)

#return 结束函数
#return返回值 x = test1()

def test1():
    print (‘in the test1‘)

def test2():
    print (‘in the test2‘)
    return 0

def test3():
    print (‘in the test3‘)
    return 1,‘hello‘,[12,3],{1:1,2:2}

x = test1()
y = test2()
z = test3()
print (x)
print (y)
print (z)

#没有return 返回None
#定义一个值,返回一个值
#定义多个值,返回一个元祖

#为什么要有返回值
#要函数执行的一个结果


本文出自 “八英里” 博客,请务必保留此出处http://5921271.blog.51cto.com/5911271/1896754

以上是关于Python之路16-函数返回值的主要内容,如果未能解决你的问题,请参考以下文章

Python学习之路--函数

Python全栈之路----函数----返回值

Python小白学习之路—函数函数返回值函数参数

Python学习之路基础篇--09Python基础,初识函数

Python学习之路:函数参数及调用

Python之路-函数