【说站】python默认索引是什么
2024-12-17
5
python默认索引是什么
1、概念
未指定起始索引时,默认为0;未指定终止索引时,默认为列表长度。
>>> li = ['one', 'two', 'three', 'four', 'five'] >>> li[:4] # 未指定起始索引,默认为 0 # ['one', 'two', 'three', 'four'] >>> li[1:] # 未指定结束索引,默认为 列表长度 # ['two', 'three', 'four', 'five']
2、当前后索引都省略时,意味着创建一份原列表的副本
>>> li = ['one', 'two', 'three', 'four', 'five'] >>> li[:] # ['one', 'two', 'three', 'four', 'five']
3、注意,切片是原列表的一份副本,操作切片并不会对原列表产生影响
>>> li = ['one', 'two', 'three', 'four', 'five'] >>> li_slice = li[:] >>> li_slice.append('six') >>> li_slice # ['one', 'two', 'three', 'four', 'five', 'six'] >>> li # ['one', 'two', 'three', 'four', 'five']
以上就是python默认索引的介绍,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1天前赞一波!1
相关文章
- 【说站】python输入成绩求平均分
- 【说站】python温度转换代码
- 【说站】python怎么将整数反转输出
- 【说站】python可迭代对象的本质探究
- 【说站】python迭代器的应用场景
- 【说站】python如何创建GUI程序
- 【说站】python数据变换如何实现
- 【说站】python字符串中有哪些方法
- 【说站】python格式字符串是什么
- 【说站】python列表添加和删除的方法
- 【说站】python列表的创建和存放
- 【说站】python序列操作的整理
- 【说站】python列表中sort()参数的使用
- 【说站】python字符串方法format()如何使用
- 【说站】python列表操作符有哪些
- 【说站】python mktime()如何计算时间
- 【说站】python搜索模块如何查询
- 【说站】python如何定义索引模块类
- 【说站】python数据模块类如何定义
- 【说站】python zip函数的使用注意
文章评论
评论问答