# map 函数
l = (1,2,4,5,6,7,8,9,)
print(list(map(lambda x:x**2,l)))#使用list类型((map函数(lambda 匿名函数定义x值:x**2方法,在那些数据表中))) #filter函数
# movie_people=['alex_sb','wupiqi_sb','linhaifeng_sb','yuanhao']
# print(list(filter(lambda n:not n.endswith('sb'),movie_people)))#使用list类型((map函数(lambda 匿名函数定义n值:not n 值范围,在movie_people数据表中)))
相关文章
- 01-27cv2中fftshift()函数
- 01-2710. mlab控制函数
- 01-27如何创建一个输出matplotlib图形的函数?
- 01-27hive:函数:from_unixtime获取当前的时间
- 01-27presto date_diff函数
- 01-27创建新进程,就三个函数CreateProcessAsUser CreateProcessWithLogonW CreateProcessWithTokenW(附网友的流程)
- 01-27Hive from_unixtime函数入门
- 01-27python内置函数之dict()
- 01-27微分流形上可以定义可微函数、切向量、切向量场、各种张量场等对象并建立其上的分析学,并可以赋予更复杂的几何结构以研究它们的性质。
- 01-27有没有办法在超类构造函数中知道调用对象的子类? C