摘要: filter(function, sequence):对sequence中的item依次执行function(item),将执行结果为True的item组成一个List/String/Tuple(取决于sequence的类型)返回:>>> def f(x): return x % 2 != 0 an 阅读全文
posted @ 2018-01-28 23:41 kiko0o0 阅读(144) 评论(0) 推荐(0)
摘要: import 模块 1、定义: 模块:用来从逻辑上组织python代码(变量、函数、类、逻辑:实现一个功能),本质就是.py结尾的python文件(文件名test.py 模块名:test) 2导入方法: import test import test,test1 from test import t 阅读全文
posted @ 2018-01-28 14:08 kiko0o0 阅读(242) 评论(0) 推荐(0)