V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
yellowtail
V2EX  ›  Python

闭包练习,为什么第一个写法和第二个学法输出不一样?

  •  
  •   yellowtail · 2021-07-07 17:20:01 +08:00 via iPhone · 978 次点击
    这是一个创建于 994 天前的主题,其中的信息可能已经有所发展或是发生改变。
    def fapi(i):
    def fuc():
    return i**2
    return fuc

    l=[]
    for i in range(4):
    l.append(fapi(i))
    l[0]()

    def mainf():
    l = []
    for i in range(4):
    def f():
    return i**2
    l.append(f)
    return l

    mainf()[0]()

    def mainf2():
    l = []
    def f():
    return i**2
    for i in range(4):
    l.append(f)
    return l

    mainf2()[0]()
    3 条回复    2021-07-12 11:46:12 +08:00
    frostming
        1
    frostming  
       2021-07-08 14:01:47 +08:00
    缩进全丢了让人怎么看?

    mainf 和 mainf2 效果是完全一样的,闭包内的自由变量直到包装的函数被调用时才会真正去寻值,i 都等于 3
    yellowtail
        2
    yellowtail  
    OP
       2021-07-10 13:34:47 +08:00
    @frostming 手机发帖不习惯,想了下没有缩减也不会有歧义,抱歉...不过第一个也都是对应的 i,结束以后应该都是 9 。
    frostming
        3
    frostming  
       2021-07-12 11:46:12 +08:00
    第一个是正常输出 0,建议你重试下
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5437 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 08:44 · PVG 16:44 · LAX 01:44 · JFK 04:44
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.