美文网首页
python初学笔记

python初学笔记

作者: 清微越澜小小 | 来源:发表于2017-09-19 17:08 被阅读0次

    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