08 2019 档案

Python collections
摘要:参考链接 https://docs.python.org/zh-cn/3/library/collections.html#collections.namedtuple collections是Python内建的一个集合模块,提供了许多有用的集合类。这个模块实现了特定目标的容器,以提供Python标 阅读全文

posted @ 2019-08-04 13:37 思此狂 阅读(219) 评论(0) 推荐(0)

Python 函数/高阶函数
摘要:编写高阶函数,就是让函数的参数能够接收别的函数。 阅读全文

posted @ 2019-08-04 12:49 思此狂 阅读(98) 评论(0) 推荐(0)

Python dic/set/迭代
摘要:字典的定义 dic = {"name":"zhangsan","age":7,"val":{"math":60,"eng":80}} 值的输出 print dic["name"] #zhangsan print dic["val"]["math"] #60 字典的遍历 dic = {"name":" 阅读全文

posted @ 2019-08-03 13:29 思此狂 阅读(312) 评论(0) 推荐(0)

导航