
python学习
文章平均质量分 65
ncpbest
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python学习笔记2——Python built-in functions学习
1. 内建函数原创 2014-05-08 10:36:16 · 990 阅读 · 0 评论 -
Diveintopython第十章getopt.getopt学习
def main(argv): grammar = "kant.xml" try: opts, args = getopt.getopt(argv, "hg:d", ["help", "grammar="]) except getopt.GetoptError: usage() sys.exit(2)原创 2014-09-24 19:44:48 · 531 阅读 · 0 评论 -
网络爬虫基础知识碎碎念
看了一些论文和书,有些感触,及时记录。1.原创 2014-10-28 19:58:45 · 605 阅读 · 0 评论 -
Dive into python第三章内置数据类型总结
总体来说python内置数据类型是比较简单的,但是还是有些细节需要注意:1. duiy原创 2014-10-02 20:27:35 · 569 阅读 · 0 评论 -
Dive into python第四章自省的威力笔记
Python的自省能力使其想Matlab一样,每次不熟悉某个函数怎么用时help一下。 getattr(), dir(), help()shijige原创 2014-10-05 16:42:39 · 769 阅读 · 0 评论 -
Dive into python第七章正则表达式学习笔记
这一章讲正则表达式比较浅显,想gengdazhi原创 2014-10-08 18:26:32 · 626 阅读 · 0 评论 -
Dive into Python第九章xml学习笔记
这两天搞了一伙scrapy,感觉对保存下来d原创 2014-10-16 19:20:39 · 718 阅读 · 0 评论 -
Dive into python 第5和6章面向对象学习笔记
由于Diveintopython的第五和第六章使用一个例子,suo原创 2014-10-07 22:24:58 · 820 阅读 · 0 评论 -
Linux下安装scrapy
经历了windows痛苦的scapy安装步骤,我希望linux可以安装轻松一点,果然有了yum轻松很多。首先,确认安装环境:1. centos72.python2.73.lxml和openssl依照官方说法,centos已经有了。需要安装的依赖:1. pip或easy_install, 我选择了easy_install,到这个页面点击打开链接运行:curl http原创 2014-11-29 15:51:13 · 703 阅读 · 0 评论