摘要:
d = 7 sw={ 0:'sun', 1:'tue', 2:'wed' } name =sw.get(d,'unkown') print(name) def get_sum(): return 'sum' def get_mon(): return 'mon' def get_default(): return 'default' sw={ 0:get_sum, 1:get_mon, } d = 阅读全文
摘要:
import time def decorator(func): def wrapper(): print time.time() func() return wrapper def f1(): print('xxxxxx') f= decorator(f1) f() import time def decorat... 阅读全文
摘要:
from functools import reduce list_x = ['1','2','3','4','5'] r= reduce(lambda x,y:x+y,list_x,'aaa') print r --aaa12345 阅读全文
摘要:
结果 个数 取决于 较小的 list个数 阅读全文
摘要:
https://blog.csdn.net/weixin_42434700/article/details/143362373 从这里找下载包 https://unofficial-builds.nodejs.org/download/release/ 解压后直接 加环境变量 vim /etc/pr 阅读全文
摘要:
___ 闭包 阅读全文
摘要:
1, 安装 2. 修改 配置 文件 ,后台 启动 vim /etc/redis.conf 找到 daemonize 属性 将no改为yes 3.启动 redis-server /etc/redis.conf & 解决Redis错误MISCONF Redis is configured to save 阅读全文
摘要:
把 all_urls 这个list 的每一个 值 ,进行前面的表达式判断 list_x = [1,0,1,0,0,1] r = filter(lambda x: True if x==1 else False,list_x ) print(list(r)) 阅读全文