From fa8a1b0e001ece929d4846c8c4a8b2139c7dc79a Mon Sep 17 00:00:00 2001 From: Jaime Chen Date: Tue, 22 Nov 2011 17:14:25 +0800 Subject: [PATCH] Add guide for new comer to python --- docs/other.rst | 19 +++++++++++++++++++ docs/service.rst | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/docs/other.rst b/docs/other.rst index 858d30a..05489a1 100644 --- a/docs/other.rst +++ b/docs/other.rst @@ -13,3 +13,22 @@ SAE app 代码以数字标识版本,如pythondemo应用有4个版本:: 改变默认版本之后,请确保当前版本路径在sys.path最前面,防止误导入到旧版本的模块 +Python新手?入门教程 +-------------------------- +笨办法学Python, Learn Python The Hard Way +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +作者: Zed Shaw, 译者: wangdingwei82@gmail.com + +http://readthedocs.org/docs/learn-python-the-hard-way-zh_cn-translation/en/latest/index.html + + +Python 2.6.7 官方教程 +~~~~~~~~~~~~~~~~~~~~~~~~~~ +http://docs.python.org/release/2.6.7/tutorial/index.html + +模块索引 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Python编程必备书签 + +http://docs.python.org/release/2.6.7/modindex.html + diff --git a/docs/service.rst b/docs/service.rst index 4e53690..c113afc 100644 --- a/docs/service.rst +++ b/docs/service.rst @@ -130,8 +130,8 @@ Examle: m.smtp = ('smtp.sina.com', 25, 'me@sina.com', 'password', False) m.send() - -使用Gmail SMTP:: +使用Gmail SMTP +~~~~~~~~~~~~~~~ import sae.mail