关于Python的主(main)函数问题

2023-01-31 02:01:10 python main 函数
 
初次接触python的人会很不习惯Python没有main主函数。
这里简单的介绍一下,在Python中使用main函数的方法
#hello.py 
def foo(): 
    str="function" 
    print(str); 
if __name__=="__main__": 
    print("main") 
    foo() 
其中if __name__=="__main__":这个程序块类似与Java和C语言的中main(主)函数
在Cmd中运行结果
C:\work\python\divepy>python hello.py
main
function

在Python shell中运行结果
>>> import hello
>>> hello.foo()
function
>>> hello.__name__
'hello'
>>>
可以发现这个内置属性__name__自动的发生了变化。
这是由于当你以单个文件运行时,__name__便是__main__
当你以模块导入使用时,这个属性便是这个模块的名字。
 
Http://szz0429-126-com.iteye.com/blog/774514

相关文章