python   __name__=='__main__' 用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python   __name__=='__main__' 用法相关的知识,希望对你有一定的参考价值。


  1. python 文件的后缀为.py,比如 name.py

  2. python 文件可以直接执行,也可以被导入、调用,比如import name;


script 1:

#!/bin/python
# Filename:name.py
if __name__==‘__main__‘:
    print ‘This program is being run by itself‘
else:
    print ‘I am being imported from another module‘


script 2:

#!/bin/python
# filename:test.py
import name;
执行 test.py
返回
C:\Python27\python.exe C:/Users/Administrator/PycharmProjects/11/test.py
I am being imported from another module
Process finished with exit code 0


结论:

  1. __name__==‘__main__‘ 代表直接执行

  2. 如果被当作模块导入到其他python文件中,执行else 后面的命令

  3. 一般我们在调试的时候会用到

本文出自 “roidba” 博客,请务必保留此出处http://roidba.blog.51cto.com/12318731/1894285

以上是关于python   __name__=='__main__' 用法的主要内容,如果未能解决你的问题,请参考以下文章

Python配合前端写简单接口(加前端vue代码)

python执行sql返回结果有r

python 往excel中追加内容

python unittest 执行结果Ran 0 tests in 0.000s问题解决

python @property使用详解

python3使用AES报错ImportError: cannot import name '_AES'解决方法