Python
叨叨凡
这个作者很懒,什么都没留下…
展开
-
【Python】字符串的一些判断方法
字符串.isalnum() 所有字符都是数字或者字母,为真返回 Ture,否则返回 False。 字符串.isalpha() 所有字符都是字母,为真返回 Ture,否则返回 False。 字符串.isdigit() 所有字符都是数字,为真返回 Ture,否则返回 False。 字符串.islower() 所有字符都是小写,为真返回 Ture,否则返回 False。 字符串.is...原创 2019-07-19 14:17:08 · 218 阅读 · 0 评论 -
【Python】time模块
1.time模块 import time #生成timestamp a =time.time() #1563518465.44985 #struct_time to timestamp b = time.mktime(time.localtime()) #1563518465.0 #生成struct_time #timestamp to struct_time 本地时间 c = time.l...原创 2019-07-19 14:50:05 · 212 阅读 · 0 评论 -
【Python】装饰器decorator
decorator的性质: 1.可以接收函数作为参数 2.可以返回函数 3.接收一个函数,对其进行包装,返回一个新的函数 A.无参数的decorator #举例,包装f函数,打印f.__name__ def log(f): def fn(x): print 'call ' + f.__name__ + '()...' return f(x) retu...原创 2019-07-19 15:32:04 · 110 阅读 · 0 评论 -
【Python】常用的高阶函数
1.map() map()是 Python 内置的高阶函数,它接收一个函数 f 和一个 list,并通过把函数 f 依次作用在 list 的每个元素上,得到一个新的 list 并返回。 def f(x): return x*x print map(f, [1, 2, 3, 4, 5, 6, 7, 8, 9]) 输出结果:[1, 4, 9, 10, 25, 36, 49, 64, 81] ...原创 2019-07-19 17:03:19 · 148 阅读 · 0 评论