欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 编程语言 > python >内容正文

python

python中 __name__及__main()__的妙处02

发布时间:2025/7/14 python 32 豆豆
生活随笔 收集整理的这篇文章主要介绍了 python中 __name__及__main()__的妙处02 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

python中 __name__及__main()__的妙处

#hello.py
def sayHello():
str="hello"
print(str);

if __name__ == "__main__":
print ('This is main of module "hello.py"')
sayHello()

python作为一种脚本语言,我们用python写的各个module都可以包含以上那么一个累死c中的main函数,只不过python中的这种__main__与c中有一些区别,主要体现在:

1、当单独执行该module时,比如单独执行以上hello.py: python hello.py,则输出

    

This is main of module "hello.py"
hello

 

 

 

    可以理解为"if __name__=="__main__":" 这一句与c中的main()函数所表述的是一致的,即作为入口;

2、当该module被其它module 引入使用时,其中的"if __name__=="__main__":"所表示的Block不会被执行,这是因为此时module被其它module引用时,其__name__的 值将发生变化,__name__的值将会是module的名字。比如在python shell中import hello后,查看hello.__name__:

>>> import hello
>>> hello.__name__
'hello'
>>>

3、因此,在python中,当一个module作为整体被执行时,moduel.__name__的值将是"__main__";而当一个 module被其它module引用时,module.__name__将是module自己的名字,当然一个module被其它module引用时,其 本身并不需要一个可执行的入口main了。可以说python中的这种用法很灵活啊。

 

转自:http://www.cnblogs.com/liqilei/archive/2010/08/11/1797715.html

转载于:https://www.cnblogs.com/handsome1013/p/9269200.html

总结

以上是生活随笔为你收集整理的python中 __name__及__main()__的妙处02的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。