上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 重新阅读了一遍python2.7的官方文档,把元组列表和字典部分又过了一遍。tuple, list, dictionary 有了这三个数据结构就可以解决很多数学问题了。 不过要学好数据结构打好基础,还是需要更多的练习,在练习中发现问题,继续提高。 关于打基础,我的下一步: 总之,希望自己养成好的习惯 阅读全文
posted @ 2016-03-24 23:34 LandFlow 阅读(122) 评论(0) 推荐(0) 编辑
摘要: Dictionary view objects简介 The objects returned by dict.viewkeys(), dict.viewvalues() and dict.viewitems() are view ob jects. They provide a dynamic vi 阅读全文
posted @ 2016-03-24 13:22 LandFlow 阅读(425) 评论(0) 推荐(0) 编辑
摘要: python学习笔记整理 数据结构——字典 无序的 {键:值} 对集合 用于查询的方法 len(d) Return the number of items in the dictionary d. 返回元素个数 d[key] Return the item of d with key key. Ra 阅读全文
posted @ 2016-03-24 13:21 LandFlow 阅读(284) 评论(0) 推荐(0) 编辑
摘要: python中字典按键或键值排序(我转!) 一、字典排序 在程序中使用字典进行数据信息统计时,由于字典是无序的所以打印字典时内容也是无序的。因此,为了使统计得到的结果更方便查看需要进行排序。 Python中字典的排序分为按“键”排序和按“值”排序。 1、按“值”排序 按“值”排序就是根据字典的值进行排序,可以使用内置的sorted()函数。sorted(iterable[, cmp[, k... 阅读全文
posted @ 2016-03-24 12:45 LandFlow 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 1.性能 Py3.0运行 pystone benchmark的速度比Py2.5慢30%。Guido认为Py3.0有极大的优化空间,在字符串和整形操作上可 以取得很好的优化结果。 Py3.1性能比Py2.5慢15%,还有很大的提升空间。 2.编码 Py3.X源码文件默认使用utf-8编码,这就使得以下 阅读全文
posted @ 2016-03-23 23:06 LandFlow 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 你的位置: Home ‣ Dive Into Python 3 ‣ 难度等级: ♦♦♦♦♦ ❝ Life is pleasant. Death is peaceful. It’s the transition that’s troublesome. ❞— Isaac Asimov (attribut 阅读全文
posted @ 2016-03-23 23:02 LandFlow 阅读(1693) 评论(0) 推荐(2) 编辑
摘要: 2016-04-03 21:02:50 python list的遍历 list[a::b] #从list[a] 开始,每b个得到一个元组,返回新的list 举个例子: >>> li=range(20) >>> li[5::5] [5, 10, 15] >>> range <built-in func 阅读全文
posted @ 2016-03-22 23:07 LandFlow 阅读(270) 评论(0) 推荐(0) 编辑
摘要: python BIT 集合 set 阅读全文
posted @ 2016-03-22 12:48 LandFlow 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 元组——不可变对象 阅读全文
posted @ 2016-03-22 12:47 LandFlow 阅读(205) 评论(0) 推荐(0) 编辑
摘要: python BIT 内置数据结构 List 阅读全文
posted @ 2016-03-20 23:11 LandFlow 阅读(324) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页