2006年10月21日 星期六 04:44
if __name__ == "__main__": 是不是说,如果是直接执行,就运行if后的语句,如果是import就不会被执行了? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://python.cn/pipermail/python-chinese/attachments/20061021/b39e9be5/attachment.html
2006年10月21日 星期六 08:17
YES。是的 所以常见的写法有 def main(): do_something() if __name__ == "__main__": debug_something() main() debug_others() 2006/10/21, Bian Alex <python.bian在gmail.com>: > > if __name__ == "__main__": > > 是不是说,如果是直接执行,就运行if后的语句,如果是import就不会被执行了? > > _______________________________________________ > python-chinese > Post: send python-chinese在lists.python.cn > Subscribe: send subscribe to python-chinese-request在lists.python.cn > Unsubscribe: send unsubscribe to python-chinese-request在lists.python.cn > Detail Info: http://python.cn/mailman/listinfo/python-chinese > -- -- Jia LU <http://www.lujia.us> python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for p in '001akor在liamg.moc'.split('@')])" -- \ "Unix is an operating system, OS/2 is half an operating system, | `\ Windows is a shell, and DOS is a boot partition virus." -- | _o__) Peter H. Coffin | -------------- 下一部分 -------------- 一个HTML附件被移除... URL: http://python.cn/pipermail/python-chinese/attachments/20061021/22e87a06/attachment.html
2006年10月21日 星期六 11:03
On 10/21/06, Bian Alex <python.bian在gmail.com> wrote: > if __name__ == "__main__": > > 是不是说,如果是直接执行,就运行if后的语句,如果是import就不会被执行了? You are right. -- I like python! UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad My Blog: http://www.donews.net/limodou
Zeuux © 2025
京ICP备05028076号