python以主程序形式运行

时间:2022-12-28 13:59:03

以主程序形式运行

在每个模块的定义中都包括一个记录模块名称的变量__name__,程序可以检查该变量,以确定他们在哪个模块中执行。如果一个模块不是被导入到其它程序中执行,那么它可能在解释器的*模块中执行。*模块的__name__变量为__main__

不是以主程序形式运行

# coding:utf-8
def add(a, b):
return a+b


print(add(10, 20))

# coding:utf-8
import calc2
print(calc2.add(100, 200))

python以主程序形式运行

以主程序形式运行

# coding:utf-8
def add(a, b):
return a+b


if __name__ == '__main__':
print(add(10, 20))

# coding:utf-8
import calc2
print(calc2.add(100, 200))

python以主程序形式运行