if__name__=='__main__':的作用是判断是否是在主程序执行,什么是主程序,就是现在
要执行的py文件,如果是导入的文件就不会走到这个判断里面
如:if__name__=='__main__':
print ‘hello main process’
else:
print 'it is not the main process'
如果这段话是import的文件,那么久执行else中的语句
if__name__=='__main__':的作用是判断是否是在主程序执行,什么是主程序,就是现在
要执行的py文件,如果是导入的文件就不会走到这个判断里面
如:if__name__=='__main__':
print ‘hello main process’
else:
print 'it is not the main process'
如果这段话是import的文件,那么久执行else中的语句
本文标题:python初学笔记
本文链接:https://www.haomeiwen.com/subject/tlcgsxtx.html
网友评论