【说站】python zip_longest如何使用
2024-12-13
25
python zip_longest如何使用
使用说明
1、zip_longest需要导入itertools模块,且使用的时候需要指定一个填充值fillvalue。
2、当有可迭代对象遍历完,但其他对象还没有的时候,缺少的相应元素就会使用填充值进行填充。
实例
from itertools import zip_longest a = [i for i in range(10)] b = [i for i in range(1, 9)] for num1, num2 in zip_longest(a, b, fillvalue=-1): print(num1, num2) # 0 1 # 1 2 # 2 3 # 3 4 # 4 5 # 5 6 # 6 7 # 7 8 # 8 -1 # 9 -1
以上就是python zip_longest的使用,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:5天前赞一波!2
相关文章
- 【说站】python输入成绩求平均分
- 【说站】python温度转换代码
- 【说站】python怎么将整数反转输出
- 【说站】python可迭代对象的本质探究
- 【说站】python迭代器的应用场景
- 【说站】python如何创建GUI程序
- 【说站】python数据变换如何实现
- 【说站】python字符串中有哪些方法
- 【说站】python格式字符串是什么
- 【说站】python默认索引是什么
- 【说站】python列表添加和删除的方法
- 【说站】python列表的创建和存放
- 【说站】python序列操作的整理
- 【说站】python列表中sort()参数的使用
- 【说站】python字符串方法format()如何使用
- 【说站】python列表操作符有哪些
- 【说站】css中fraction如何使用
- 【说站】js变量的作用域如何使用
- 【说站】python mktime()如何计算时间
- 【说站】python搜索模块如何查询
文章评论
评论问答