随笔分类 -  Book Review

读后感
Python cookbook-读书笔记01
摘要:1 数据结构和算法1.1 Unpacking a sequence into separate variable(解包,赋值)>>> data = [ 'ACME', 50, 91.1, (2012, 12, 21) ]>>> name, shares, price, (year, mon, day) = data#可以用下划线来替代缺省值,节省变量名>>> >>> data = [ 'ACME', 50, 91.1, (2012, 12, 21) ]>>> _, shar 阅读全文
posted @ 2014-01-08 22:04 大哉昆仑 阅读(300) 评论(0) 推荐(0)
资源列表
摘要:Python1. 深入Python 3 (不错的在线学习python的网站) http://woodpecker.org.cn/diveintopython3/2. 基本语法 (适合快速了解) http://www.tutorialspoint.com/python/index.htm3. Python的算法 (形象,易懂) http://interactivepython.org/courselib/static/pythonds/index.html4. Python 实战练习(强烈推荐) http://www.checkio.org5. 自然语言工具NLTK http://nl... 阅读全文
posted @ 2013-12-04 18:42 大哉昆仑 阅读(241) 评论(1) 推荐(0)