课程
/后端开发
/Python
/python进阶
return 1;return-1;return 0是什么意思?
2017-09-21
源自:python进阶 2-7
正在回答
返回值也没其他意思,就是对应的函数返回的值,当调用该函数时就会得到这个值。如下例:
def test(): print 'this is a test func' return 'test'
当使用test()调用test()函数时,将会打印“this is a test func”,虽然获取到函数返回的值‘test’,不是并不会打印出来
3.当使用print test()时,就会打印出‘this is a test func’还有 'test'
举报
学习函数式、模块和面向对象编程,掌握Python高级程序设计