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
dwzhao
V2EX  ›  Python

为何 Python __main__model 后的定义可以被提前应用

  •  
  •   dwzhao · 2018-05-07 16:09:40 +08:00 · 1594 次点击
    这是一个创建于 2178 天前的主题,其中的信息可能已经有所发展或是发生改变。
    # ! /usr/bin/env python
    # -*- coding: utf-8 -*-
    
    def mytestfunc():
        print myvsr
        exit(1)
    
     
    if __name__ == "__main__":
        myvsr = 1
        mytestfunc()
    

    如上,为何我在 main 中的定义可以在 mytestfunc 方法中使用,是否意味着在 main 中的定义会是全局的?

    ipwx
        1
    ipwx  
       2018-05-07 16:26:52 +08:00   ❤️ 1
    你并没有写 def main()

    你写的只是一个 if 语句。

    Python 语句块没有自己的作用域。
    dwzhao
        2
    dwzhao  
    OP
       2018-05-07 17:37:48 +08:00
    在 Python 中是没有块级作用域的,代码块里的变量,外部可以调用,所以可运行成功,got it,感谢~
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   976 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 36ms · UTC 21:39 · PVG 05:39 · LAX 14:39 · JFK 17:39
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.