菜鸟养成第11集

filter函数

filter 函数用于过滤序列 ,它接收一个函数和一个序列,把函数作用在序列的每个元素上,然后根据返回值是True还是False决定保留还是丢弃该元素

python 复制代码
>>> mylist = list(range(10))
>>> list(filter(lambda x: x % 2 == 1, mylist))
[1, 3, 5, 7, 9]

zip函数

zip() 函数将可迭代的对象作为参数将对象中对应的元素打包成一个元组 ,然后返回由这些元组组成的列表

python 复制代码
>>> list1 = ['zhangfei', 'guanyu', 'liubei', 'zhaoyun']
>>> list2 = [0, 3, 2, 4]
>>> list(zip(list1, list2))
[('zhangfei', 0), ('guanyu', 3), ('liubei', 2), ('zhaoyun', 4)]

Counter函数

统计字符串中各个字符数个数

Counter(s)并且用字典的方式返回如下信息:

Counter({'f': 3, '9': 3, 'h': 2, '3': 2, 'w': 1, 'a': 1, 'u': 1, '2': 1, 'e': 1, 'r': 1, 'i': 1, '0': 1, '4': 1, 'j': 1, '-': 1})

shuffle函数

打乱一个列表

相关推荐
yyfhq18 分钟前
sdnet
python
测试199825 分钟前
2024软件测试面试热点问题
自动化测试·软件测试·python·测试工具·面试·职场和发展·压力测试
love_and_hope25 分钟前
Pytorch学习--神经网络--搭建小实战(手撕CIFAR 10 model structure)和 Sequential 的使用
人工智能·pytorch·python·深度学习·学习
海阔天空_20131 小时前
Python pyautogui库:自动化操作的强大工具
运维·开发语言·python·青少年编程·自动化
零意@1 小时前
ubuntu切换不同版本的python
windows·python·ubuntu
思忖小下1 小时前
Python基础学习_01
python
q567315232 小时前
在 Bash 中获取 Python 模块变量列
开发语言·python·bash
是萝卜干呀2 小时前
Backend - Python 爬取网页数据并保存在Excel文件中
python·excel·table·xlwt·爬取网页数据
代码欢乐豆2 小时前
数据采集之selenium模拟登录
python·selenium·测试工具
狂奔solar2 小时前
yelp数据集上识别潜在的热门商家
开发语言·python