赠言

这个教程到目前为止,所讲述的仅是点到为止。Python世界中有大量的工具,库和软件可以帮你完成你的工作。
但你需要自己花时间去发现他们!

Python有一个伟大的社区和一群很聪明的维护者,他们对于新手非常有耐心。
因此,关注你最喜欢的开源项目,加入他们的邮件列表,跟有经验的开发者交流经验。
不久的将来,你的经验也将足够丰富,你将会成为他们其中的一员。

最后我想引用下 Zen Of Python 。我们思考,学习,受到启发!
Happy Pythoning

  1. >>> import this
  2.  
  3. The Zen of Python, by Tim Peters
  4.  
  5.  
  6.  
  7. Beautiful is better than ugly.
  8.  
  9. Explicit is better than implicit.
  10.  
  11. Simple is better than complex.
  12.  
  13. Complex is better than complicated.
  14.  
  15. Flat is better than nested.
  16.  
  17. Sparse is better than dense.
  18.  
  19. Readability counts.
  20.  
  21. Special cases aren't special enough to break the rules.
  22.  
  23. Although practicality beats purity.
  24.  
  25. Errors should never pass silently.
  26.  
  27. Unless explicitly silenced.
  28.  
  29. In the face of ambiguity, refuse the temptation to guess.
  30.  
  31. There should be one-- and preferably only one --obvious way to do it.
  32.  
  33. Although that way may not be obvious at first unless you're Dutch.
  34.  
  35. Now is better than never.
  36.  
  37. Although never is often better than *right* now.
  38.  
  39. If the implementation is hard to explain, it's a bad idea.
  40.  
  41. If the implementation is easy to explain, it may be a good idea.
  42.  
  43. Namespaces are one honking great idea -- let's do more of those!