1、三目运算符
在其他语言中三目运算符的表达式为:
判定表达式?A:B
在python中 三目运算符的写法为:
A if 判定表达式 else B
2、set
set() 函数创建一个无序不重复元素集,用于去除集合中的重复数据非常合适
set('asdfff')
# {'s', 'f', 'd', 'a'}
3、map
map函数的原型是map(function, iterable, …),它的返回结果是一个列表。
参数function传的是一个函数名,可以是python内置的,也可以是自定义的。 参数iterable传的是一个可以迭代的对象,例如列表,元组,字符串这样的。
del square(x):
return x ** 2
map(square,[1,2,3,4,5])
#[1,4,9,16,25]
map(int,'1234')
# [1,2,3,4]
4、findall
import re
kk = re.compile(r'\d+')
kk.findall('one1two2three3four4')
#[1,2,3,4]
kk = re.compile(r'\d+')
re.findall(kk,"one123")
#[1,2,3]