上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 67 下一页
摘要: ``` class Solution: def checkPowerOf2(self, n): ans=1 for i in range(31): if ans == n: return True ans = ans 阅读全文
posted @ 2019-11-07 00:18 hank-li 阅读(135) 评论(0) 推荐(0) 编辑
摘要: ``` data_list=[] col=["a", "b", "c", "d"] jdata={"a":1, "b":2, "c":3, "d":4} for j in jdata: result=[ j[h] and j.setdefault(h) if h in j.keys() else None for h in col] data_list.append(tuple... 阅读全文
posted @ 2019-11-06 14:11 hank-li 阅读(1676) 评论(0) 推荐(0) 编辑
摘要: https://www.zhihu.com/question/42768955/answer/94798842 阅读全文
posted @ 2019-11-04 17:03 hank-li 阅读(4459) 评论(0) 推荐(1) 编辑
摘要: ``` list1 = ['122','2333','3444',' ','422',' ',' ','54',' '] list1=[x.strip() for x in list1 if x.strip() != ''] ``` 阅读全文
posted @ 2019-11-04 10:00 hank-li 阅读(11213) 评论(0) 推荐(0) 编辑
摘要: 简单使用 装饰器带有参数的函数 通用的装饰器 带有参数的装饰器 阅读全文
posted @ 2019-11-03 09:20 hank-li 阅读(147) 评论(0) 推荐(0) 编辑
摘要: docker compose将解析版本为"2",而不是"3.3"。应该改为: 阅读全文
posted @ 2019-11-01 22:56 hank-li 阅读(8473) 评论(0) 推荐(0) 编辑
摘要: 为了永久性保留更改,您可以修改 /etc/docker/daemon.json 文件并添加上 registry mirrors 键值。 修改保存后重启 Docker 以使配置生效。 阅读全文
posted @ 2019-11-01 22:54 hank-li 阅读(11450) 评论(0) 推荐(0) 编辑
摘要: 方式一: 通过icanhazip.com返回的ip地址进行检测 方式二: Telnet方法 from: https://www.jb51.net/article/144418.htm http://http.hunbovps.com/article id 423.html 阅读全文
posted @ 2019-10-31 15:54 hank-li 阅读(7360) 评论(0) 推荐(0) 编辑
摘要: 结果: 阅读全文
posted @ 2019-10-28 17:07 hank-li 阅读(1840) 评论(0) 推荐(0) 编辑
摘要: ``` import redis pool = redis.ConnectionPool(host='localhost', port=6379,encoding="UTF-8",decode_responses=True) r = redis.Redis(connection_pool=pool) result = r.keys("*") #遍历所有元素 for res in result: p 阅读全文
posted @ 2019-10-28 13:25 hank-li 阅读(192) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 67 下一页