Python 解决对于引用模块而导致执行代码运行的方法
在引用模块中的执行代码中添加判断语句形如
if __name__ = '__main__':
Practice22.py
def model():
print("one")
def model1():
print("two")
def model2():
print("three")
if __name__ == '__main__':
model()
model1()
Practice22Run1.py
import Practice2.
原创
2020-09-25 21:01:14 ·
433 阅读 ·
0 评论