标签:地址 对比 内存地址 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的内存地址
标签:地址 对比 内存地址 inf 输出 int 技术 style 函数
原文地址:https://www.cnblogs.com/lijialun/p/10117728.html