摘要: 1. 加单个, append 2. 加个list, expend 3, 最简单的, 两个list可以用"+" (加号) 阅读全文
posted @ 2017-04-20 16:23 清源居士 阅读(11597) 评论(1) 推荐(0)
摘要: refer to: http://www.cnblogs.com/icejoywoo/p/3531869.html 对于python3, 可能有不一样之处, refer to: http://docspy3zh.readthedocs.io/en/latest/tutorial/datastruct 阅读全文
posted @ 2017-04-20 16:21 清源居士 阅读(467) 评论(0) 推荐(0)
摘要: Python作为一个“内置电池”的编程语言,标准库里面拥有非常多好用的模块。比如今天想给大家 介绍的 collections 就是一个非常好的例子。 基本介绍 我们都知道,Python拥有一些内置的数据类型,比如str, int, list, tuple, dict等, collections模块在 阅读全文
posted @ 2017-04-20 16:08 清源居士 阅读(194) 评论(0) 推荐(0)
摘要: 1. 用count和dict. dict的存储是散乱的, 不方面打印. 2. 用sorted. 注意, 得到的是一个元组list, 而不再是dict. also can refer to: http://www.saltycrane.com/blog/2007/09/how-to-sort-pyth 阅读全文
posted @ 2017-04-20 16:02 清源居士 阅读(3916) 评论(0) 推荐(0)
摘要: refer to: https://medium.com/@kasiarachuta/reading-and-writingexcel-files-in-python-pandas-8f0da449cc48 dframe = pd.read_excel(“file_name.xlsx”) dfram 阅读全文
posted @ 2017-04-20 08:18 清源居士 阅读(38895) 评论(0) 推荐(0)