摘要:
``` class Solution: def checkPowerOf2(self, n): ans=1 for i in range(31): if ans == n: return True ans = ans 阅读全文
摘要:
```
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... 阅读全文
摘要:
https://www.zhihu.com/question/42768955/answer/94798842 阅读全文
摘要:
``` list1 = ['122','2333','3444',' ','422',' ',' ','54',' '] list1=[x.strip() for x in list1 if x.strip() != ''] ``` 阅读全文
摘要:
简单使用 装饰器带有参数的函数 通用的装饰器 带有参数的装饰器 阅读全文
摘要:
docker compose将解析版本为"2",而不是"3.3"。应该改为: 阅读全文
摘要:
为了永久性保留更改,您可以修改 /etc/docker/daemon.json 文件并添加上 registry mirrors 键值。 修改保存后重启 Docker 以使配置生效。 阅读全文
摘要:
方式一: 通过icanhazip.com返回的ip地址进行检测 方式二: Telnet方法 from: https://www.jb51.net/article/144418.htm http://http.hunbovps.com/article id 423.html 阅读全文