最新消息:20210816 当前crifan.com域名已被污染,为防止失联,请关注(页面右下角的)公众号

【整理】如何学习Python + 如何有效利用Python有关的网络资源 + 如何利用Python自带手册(Python Manual)

Python3 crifan 52386浏览 0评论

都差点忘了说了,在看下面所有的内容之前,对于python版本不了解的,请一定先看看这个:

【整理】总结Python2(Python 2.x版本)和Python3(Python 3.x版本)之间的区别

然后根据情况,选择自己需要的python版本,然后才涉及到,如何学习的问题。

 

【学习Python的基本流程】

1.先学习Python的基础知识

推荐资料:

Dive Into Python

中文主页是:

http://woodpecker.org.cn/diveintopython/

 

可以在线看:

深入 Python :Dive Into Python 中文版

也可以下载各种格式:

留本地看。

 

其他python资料,其实网上很多。

但是作为入门,这个是经典。

看完经典的,达到入门,就足够了。

 

2.在实践中锻炼

了解了Python基础后,剩下的,就是自己找找事情折腾。

所以想要学好一门语言,最重要的一点,永远都是:多练。

时间长了,自然熟能生巧,举一反三,触类旁通,见多识广。

 

3.遇到问题,先尽量靠自己解决,实在解决不了,再靠网络和别人

 

小问题靠自己查查Python自带手册;

大问题,靠网络搜索,即使没找到解决方法,也能找到有效的提示,所以就足够了。

 

 

【有效利用网络资源】

在学习过程中,以及后续的折腾python的过程中,要学会充分利用网络上已有的资源。

这里的网络资源,主要指的是第三方库函数,网络上已有的关于python方面的总结性资料。

1. Python的第三方库

python的第三方库,数量巨大,功能巨多,但是正是由于太多,不可能一一总结。

但是python官网,人家已经整理出来了,都放到这里了:

http://pypi.python.org/pypi?%3Aaction=index

该页面由于库太多,看着很不方便。

这里有分类查看:

http://pypi.python.org/pypi?%3Aaction=browse

 

如果需要某些方面的功能,可以去上述两个地址中,找找有没有现成的库,如果有的话,直接拿过来用,比你从头开发,要高效的多。

 

2. 各种Python的总结方面的资料

其中包括我写的Python语言总结,其中主要分两块:

(1)python学习心得和体会

总结了自己折腾python过程中的一些理解,和一些细节方面的注意事项。

(2)crifan的Python库:crifanLib.py

自己把一些常用的Python的函数,整理出来,供自己和别人使用。

尤其是很多网络方面的函数,等你用到了,就会知道会省你不少精力的。

 

有空多看看各种总结,有利于减少自己犯同样错误的几率。

 

【如何利用Python自带手册 Python Manual】

其中,关于查参考资料,特别要提示的一点是,对于很多不熟悉的python函数,最佳的学习方法,个人认为是先去Python自带手册中去查找。

而Python自带手册,是你安装好Python之后,(我的是windows环境,通过exe安装的python 2.7版的),可以通过开始->Python 27-> Python Mannuals:

python manual

而找到。

随便举个例子。

比如涉及到网络编程,需要用到urllib2这个模块,你只是听说,但是不熟悉,想要搞懂urllib2。

那么第一步,就可以先去通过manual找到urllib2:

find 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 with Connection:close header 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 + 如何有效利用Python有关的网络资源 + 如何利用Python自带手册(Python Manual)

发表我的评论
取消评论

表情

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

网友最新评论 (3)

  1. 很有帮助
    石晓强7年前 (2017-05-29)回复
  2. 很多非常用心的文章s, 看了很受启发, 仅表谢意.
    Flyinglake9年前 (2015-08-25)回复
  3. 好方法,採用了
    新新小白10年前 (2014-02-21)回复
93 queries in 0.186 seconds, using 22.05MB memory