Python 高效代码片段及其常见问题
Snippets
参考:https://medium.com/better-programming/20-python-snippets-you-should-learn-today-8328e26ff124
序列定长分割
plaintext
1 | In [16]: from six.moves import zip_longest |
字符串逆转
plaintext
1 | In [1]: my_string = "ABCDE" |
标题类(首字母大写)
plaintext
1 | In [3]: my_string = "aaa bbb ccc ddd" |
n次序列
plaintext
1 | In [6]: my_string = "abcd" |
列表解析
plaintext
1 | In [8]: my_list=[1,2,3,4,5] |
交换值
plaintext
1 | In [15]: a,b=1,2 |
连接字符串
plaintext
1 | In [18]: list_of_strings = ['My', 'name', 'is', 'Chaitanya', 'Baweja'] |
列表计数
plaintext
1 | In [23]: from collections import Counter |
合并字典
plaintext
1 | In [28]: dict_1 = {'apple': 9, 'banana': 6} |
列表扁平化
plaintext
1 | In [1]: from iteration_utilities import deepflatten |
列表采样
plaintext
1 | In [4]: import random |
对象内存
plaintext
1 | In [5]: import sys |
常见问题
集合运算
注:集合不支持索引访问
操作符号列表
含义 | python |
---|---|
差集 | -/difference() |
交集 | &/intersection |
并集 | |/union |
不等于 | != |
等于 | == |
属于 | in |
不属于 | not in |
init.py 作用
__init__.py
该文件的作用就是相当于把自身整个文件夹当作一个包来管理,每当有外部import的时候,就会自动执行里面的函数。
二维list赋值问题
参考: (https://blog.csdn.net/zzc15806/article/details/82629406)(https://blog.csdn.net/zzc15806/article/details/82629406)
问题:以 arr = [[0]*N]*N
形式初始化时,对二维数组对某个元素赋值时会发现整列都会被赋值
原因:因为 [[0]*N]*N
表示的是N个指向 [0]*N
这个列表的引用,所以当你修改某一个值时,整个列表都会被改变。
解决:以arr=[[0]*N for _ in range(N)]
赋值。
联系作者

本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 梦家博客!
评论
TwikooValine
Powered By Valine
v1.5.1
v1.5.1