标签:代码复用 res bar 遇到 ogg 组织结构 定义 global 组织
一、函数的意义
1.代码组织结构不清晰
2.遇到重复的功能 只能重新写代码 代码复用性差
3.延展性差
二、函数是什么
是工具,就像生活中的扳手,改锥等等
三、函数的分类
内置函数和自定义函数
四、def(name):
"""注释“”“”
函数体
形参与实参
形参只有在调用时才分配内存单元
所以形参只在函数内部生效
def cal(x, y):
res = x ** y
return res
a=10
b=2
m=cal(a,b)
print(m)
x,y 为形参 a,b
五、全局变量和局部变量
name = "chb"
def name_change():
print("name is ",name)
def name_change1():
name = "chb1"
print("name is ",name)
name_change()
name_change1()
六、向前引用
def action():
print ‘in the action‘
logger()
action()
报错NameError: global name ‘logger‘ is not defined
def logger():
print ‘in the logger‘
def action():
print ‘in the action‘
logger()
action()
def action():
print ‘in the action‘
logger()
def logger():
print ‘in the logger‘
action()
七、嵌套函数及作用域
name=‘1‘
def foo():
name=‘2‘
def bar():
name=‘3‘
def tt():
print(name)
return tt
return bar
a=foo()
a()()
标签:代码复用 res bar 遇到 ogg 组织结构 定义 global 组织
原文地址:https://www.cnblogs.com/chb420/p/13039468.html