Python网络资源 + Python Manual
如何学习Python + 如何有效利用Python有关的网络资源 + 如何利用Python自带手册(Python Manual)
【整理】总结Python2(Python 2.x版本)和Python3(Python 3.x版本)之间的区别
然后根据情况,选择自己需要的python版本,然后才涉及到,如何学习的问题。
【学习Python的基本流程】
1.先学习Python的基础知识
推荐资料:
中文主页是:
http://woodpecker.org.cn/diveintopython/
可以在线看:
深入 Python :Dive Into Python 中文版
也可以下载各种格式:
留本地看。
1. Python的第三方库
python的第三方库,数量巨大,功能巨多,但是正是由于太多,不可能一一总结。
但是python官网,人家已经整理出来了,都放到这里了:
http://pypi.python.org/pypi?%3Aaction=index
该页面由于库太多,看着很不方便。
这里有分类查看:
http://pypi.python.org/pypi?%3Aaction=browse
如果需要某些方面的功能,可以去上述两个地址中,找找有没有现成的库,如果有的话,直接拿过来用,比你从头开发,要高效的多。
2. 各种Python的总结方面的资料
其中包括我写的Python语言总结,其中主要分两块:
总结了自己折腾python过程中的一些理解,和一些细节方面的注意事项。
(2)crifan的Python库:crifanLib.py
自己把一些常用的Python的函数,整理出来,供自己和别人使用。
尤其是很多网络方面的函数,等你用到了,就会知道会省你不少精力的。
【如何利用Python自带手册 Python Manual】
其中,关于查参考资料,特别要提示的一点是,对于很多不熟悉的python函数,最佳的学习方法,个人认为是先去Python自带手册中去查找。
而Python自带手册,是你安装好Python之后,(我的是windows环境,通过exe安装的python 2.7版的),可以通过开始->Python 27-> Python Mannuals:
比如涉及到网络编程,需要用到urllib2这个模块,想要搞懂urllib2。
那么第一步,就可以先去通过manual找到urllib2:
然后再去看看其语法:
- urllib2.urlopen(url[, data][, timeout])
- Open the URL url, which can be either a string or a Request object.
Warning
HTTPS requests do not do any verification of the server’s certificate.
data may be a string specifying additional data to send to the server, or None if no such data is needed. Currently HTTP requests are the only ones that use data; the HTTP request will be a POST instead of a GET when the data parameter is provided. data should be a buffer in the standard application/x-www-form-urlencoded format. The urllib.urlencode() function takes a mapping or sequence of 2-tuples and returns a string in this format. urllib2 module sends HTTP/1.1 requests withCONNECTION:CLOSEheader included.
The optional timeout parameter specifies a timeout in seconds for blocking operations like the connection attempt (if not specified, the global default timeout setting will be used). This actually only works for HTTP, HTTPS and FTP connections.
This function returns a file-like object with two additional methods:
- geturl() — return the URL of the resource retrieved, commonly used to determine if a redirect was followed
- info() — return the meta-information of the page, such as headers, in the form of an mimetools.Message instance (see Quick Reference to HTTP Headers)
Raises URLError on errors.
Note that None may be returned if no handler handles the request (though the default installed global OpenerDirector uses UnknownHandler to ensure this never happens).
In addition, default installed ProxyHandler makes sure the requests are handled through the proxy when they are set.
Changed in version 2.6: timeout was added.
如此,对于其有个基本的了解后,再去网上详细看看别人的示例代码。
这样,有助于你快速,准确的,学习此库函数。
至少,我对于很多很多的python内置库函数,都是这样慢慢逐渐学习和了解的。
- 简明Python教程
Swaroop, C. H. 著,>沈洁元 译
特点:内容很全。
- 深入 Python 3
- 关于python的中文文档
这里:http://www.elias.cn/Python/HomePage介绍了很多的资源。其中就有python教程的中文版
- 在线实时演示Python代码的运行
Online Python Tutor - Learn programming by visualizing code execution
- Python的示例程序
- 各种Python的示例代码
- Python风格的详尽解释和举例
- 如何写自己的库函数
http://postgetter-app.googlecode.com/hg-history/04cc032892e8a81a46eeb15ec7814fc3b39ed6ab/PostGetter.py值得学习学习。关于自己写类,库函数时,如何写,如何处理logger和异常等等方面,值得学习。
- Python资料大全
http://simple-is-better.com/sites/收集了N多关于的Python的网站、教程、图书、框架、应用等等内容。
- 关于有介绍Python的IDE
https://wiki.python.org/moin/IntegratedDevelopmentEnvironments
- MicroPython
之前看到一个好玩的,另类版本的Python:
Python网络资源 + Python Manual的更多相关文章
- 1 python学习——python环境配置
1 python学习--python环境配置 要学习python语言,光看书看教程还是不好,得动手去写.当然,不管学习什么编程语言,最佳的方式还在于实践. 要实践,先得有一个Python解释器来解释执 ...
- CentOS使用virtualenv搭建独立的Python环境-python虚拟环境
CentOS使用virtualenv搭建独立的Python环境-python虚拟环境 virtualenv可以搭建虚拟且独立的python环境,可以使每个项目环境与其他项目独立开来,保持环境的干净,解 ...
- Embeding Python & Extending Python with FFPython
Introduction ffpython is a C++ lib, which is to simplify tasks that embed Python and extend Python. ...
- python 运行python manege.py runserver时报错:“no module named djangorestframework” 的解决方案
python 运行python manege.py runserver时报错:“no module named djangorestframework” 的解决方案 importerror:no mo ...
- 翻译文章“AST 模块:用 Python 修改 Python 代码”---!!注意ironpathyon未实现此功能
https://github.com/upsuper/blog/commit/0214fdd084c4adf2de2ed9912d644fb59ce13a1c +Title: [翻译] AST 模块: ...
- Python学习(二) 运行Python,编译Python
无论windos还是Linux只要安装了python,配置好了环境变量,则在命令行输入python这个命令的时候就会进入交互模式.在这个模式下可以进行一些简单的python代码编写.退出可以使用exi ...
- Python:Python学习总结
Python:Python学习总结 背景 PHP的$和->让人输入的手疼(PHP确实非常简洁和强大,适合WEB编程),Ruby的#.@.@@也好不到哪里(OO人员最该学习的一门语言). Pyth ...
- Python 正则表达式 (python网络爬虫)
昨天 2018 年 01 月 31 日,农历腊月十五日.20:00 左右,152 年一遇的月全食.血月.蓝月将今晚呈现空中,虽然没有看到蓝月亮,血月.月全食也是勉强可以了,还是可以想像一下一瓶蓝月亮洗 ...
- Python和Python解释器
目录 Python介绍(了解) Python解释器发展史(了解) Python解释器(了解) CPython IPython PyPy Jython IronPython 安装Python解释器(掌握 ...
随机推荐
- java中Timer计时器使用
1.新建计时器Timer对象 2.给计时器安排任务,schedule方法 3.取消计时器中分配的任务,purge方法 4.终止计时器,cancel方法 注意:如果计时器已经终止,还要给计时器安排任务, ...
- 在一个exe文件中查找指定内容,找到则返回起始位置, 否则返回0
//在一个exe文件中查找指定内容,找到则返回起始位置, 否则返回0//如果某字符串, 直接传入字符串进来//如果要查找16进制,则用如下格式传参进来: #$1A#$2A#$3A function F ...
- SqlServer sys.partition_view
--查看partition的四个视图 select * from sys.partition_functions--查看分区函数 select * from sys.partition_paramet ...
- Linux打开windows 的txt文件,乱码的问题
实际是两种不同操作系统对中文编码的不一样.转换下就行了 references: http://www.cnblogs.com/no7dw/archive/2013/05/21/3090594.html
- python模块学习之random
模块源码: Source code: Lib/random.py 文档:http://docs.python.org/2/library/random.html 常用方法: random.random ...
- C#执行zip文件压缩的几种方法及我遇到的坑总结
工作项目中需要用到zip压缩解压缩文件,一开始看上了Ionic.Zip.dll这个类库,操作方便,写法简单 对应有个ziphelper类 using Ionic.Zip; public static ...
- Linux FTP安装与简单配置
1.检測是否原有启动 ps -ef|grep vsftpd 2.检測是否有安装包 rpm -qa|grep vsftpd 3.假设有输出.查看状态并启动 service vsftp status - ...
- cloudstack4.4新增功能前瞻
cloudstack4.4.0新功能前瞻 转载请注明地址:http://blog.csdn.net/zt689/article/details/37698989 1. cloudstack4.4. ...
- ubuntu 14.04 chromium 设备adobe flash player(亲测可行)
首先,根据浏览器提示下载Adobe Flash Player 插入 install_flash_player_11_linux.x86_64.tar.gz;然后使用sudo tar -xzvf ins ...
- Input输入字体颜色改变js(兼容IE)
从网上找的代码,自己封装了一下(前提:引用jQuery库) 方法1: HTML: <div class="box"> <div class="ipt1& ...