1、三元表达式
Python没有三目运算符(?:),但有类似的替代方案,那就是
true_part if condition else false_part
2、for ...in...
写假循环时习惯性的写成
for i in 5
结果报错TypeError: ‘int‘ object is not iterable,原因是循环中使用的应该是组数,修改为:
for i in range(5)
3、无法获取经过filter的数据长度
输出数组长度时报Exception isobject of type 'filter' has no len(),原因是Python2.x 中返回的是过滤后的列表, 而 Python3 中返回到是一个 filter 类
可以使用list()
函数将其转化为列表,从而获取长度
len(list(filter(lambda x: x['type']=='xx', filelist)))
4、字符串数字互转
5、字符串截取
字符串中获取一段子字符串的话,可以使用 [头下标:尾下标] 来截取相应的字符串
下标对应图例:
- s = 'abcdef'
- s[1:5]
- #'bcde'
6、for 循环出索引值
需要索引值时可以
-
- for index in range(len(list)):
- print(index)
或者
- #enumerate() 函数用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,
- #同时列出数据和数据下标,一般用在 for 循环当中
- for index ,v in enumerate(list):
- print(index)