码迷,mamicode.com
首页 > 编程语言 > 详细

Python函数返回值、作用域

时间:2018-08-26 01:22:21      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:就会   format   范围   lis   运行   返回值   可见   strong   作用   

函数的返回值:
举例1:
def showplus(x):
print(x)
return x + 1

showplus(5)
输出结果为:
5
6

举例2:
def showplus(x):
print(x)
return x + 1
print(x+1) #会执行吗?
showplus(5)
输出结果为:
5
6

2、多条return语句
def guess(x):
if x > 3:
return "> 3"
else:
return "<= 3"

print(guess(10))
输出结果为:

3

def showplus(x):
print(x)
return x + 1
return x + 2

showplus(5)
输出结果为:
5
6

def fn(x):
for i in range(x):
if i > 3:
return i
else:
print(‘{} is not greater than 3‘.format(x))
print(fn(10))
print(fn(3))
输出结果为:
4
3 is not greater than 3
None

返回多个值???
def showlist():
return [1,2,3]---返回一个列表,是一个列表对象

def showlist():
return 1,2,3---看似返回多个值,隐式的被python封装成了一个元组。

总结:
python函数使用return语句返回“返回值”
所有函数都有返回值,如果没有return语句,隐式调用return None
return语句并不一定是函数的语句块的最会一条语句
一个寒素可以存在多个return语句,但是只有一条可以被执行,如果没有一条return语句被执行到,隐式调用return None
如果有必要,可以显示调用return None,可以简写为return
如果函数执行了return语句,函数就会返回,当前被执行的return语句之后的其它语句就不会被执行了
作用:结束函数调用,返回值。

作用域:
一个标识符的可见范围,这就是标识符的作用域。一般常说的是变量的作用域

全局作用域:
在整个程序运行环境中都可见
局部作用域:
在函数,类等内部可见
局部变量使用范围不能超过其所在的局部作用域。

Python函数返回值、作用域

标签:就会   format   范围   lis   运行   返回值   可见   strong   作用   

原文地址:http://blog.51cto.com/563349612/2164393

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!