python
chenghaoy
这个作者很懒,什么都没留下…
展开
-
python常见语法
key=lambda x:(x[0], x[1]) 在python中隐函数常用于对数组进行排序,上述隐函数的含义指的是优先基于数组元素中的第一位进行排序,若遇到相等的情况,则基于第二位元素进行排序 a = [[2, 3], [5, 2], [4, 7], [4, 6], [4, 8]] a.sort(key=lambda x:(x[0], x[1])) print(a) [[2, 3], [4, 6], [4, 7], [4, 8], [5, 2]] key=lambda x:(x[0], -x[1.原创 2021-09-29 14:55:55 · 503 阅读 · 0 评论 -
windows下pip 安装python包超时问题
问题: pip install *** 报如下超时错误: raise ReadTimeoutError(self._pool, None, ‘Read timed out.’) pip._vendor.requests.packages.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhoste...原创 2020-02-26 15:31:25 · 495 阅读 · 0 评论 -
python内置函数时间复杂度
原文链接:https://wiki.python.org/moin/TimeComplexity This page documents the time-complexity (aka "Big O" or "Big Oh") of various operations in current CPython. Other Python implementations (or older or ...转载 2018-09-28 16:01:37 · 1773 阅读 · 0 评论