当前位置: 首页 > 图灵资讯 > 行业资讯> Python不同模块下特殊变量的使用

Python不同模块下特殊变量的使用

来源:图灵python
时间: 2024-06-29 21:48:37

1、当模块(源文件)作为主程序运行时,解释器将硬编码字符串赋值"__main__"给__name__变量。

#It'sasiftheinterpreterinsertsthisatthetop
#ofyourmodulewhenrunasthemainprogram.
__name__="__main__"

2、当模块被另一个导入时,导入句中的名称分配给__name__变量。

假设其他模块是主程序并导入您的模块。这意味着在主程序或主程序导入的其他模块中有这样的句子:

#Supposethisisinsomeothermainprogram.
importfoo

解释器将搜索您的fooo.在执行该模块之前,py文件(以及搜索其他一些变体)。

#It'sasiftheinterpreterinsertsthisatthetop
#ofyourmodulewhenit'simportedfromanothermodule.
__name__="foo"

以上是Python不同模块下特殊变量的使用,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。