码迷,mamicode.com
首页 > 其他好文 > 详细

2018.12.14——函数作用域

时间:2018-12-25 15:54:04      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:地址   对比   内存地址   inf   输出   int   技术   style   函数   

一、引入:

例1:

def test1():
    print(in the test1)
def test():
    print(in the test)
    return test1
res=test()
print(res)

输出结果:技术分享图片

例2:

def test1():
    print(in the test1)
def test():
    print(in the test)
    return test1
res=test()
print(res())

输出结果:技术分享图片

 例3:

name=alex
def foo():
    name=linhaifeng
    def bar():
        print(name)
    return bar
foo()

#输出结果:

对比一下(做了一些微调):

name=alex
def foo():
    name=linhaifeng
    def bar():
        print(name)
    return bar
print(foo())

#输出结果:bar的内存地址

 

2018.12.14——函数作用域

标签:地址   对比   内存地址   inf   输出   int   技术   style   函数   

原文地址:https://www.cnblogs.com/lijialun/p/10117728.html

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