您现在的位置是:课程教程文章

python列表索引的两种用法

2023-12-14 21:25课程教程文章 人已围观

1、可以通过符号[]获得与索引相对应的数据项。

>>> fruits = [‘apple’, ‘banana’, ‘cherry’, ‘durian’]
>>> fruits[0]
’apple’
>>> fruits[2]
’cherry’

2、除了通过索引获得值外,还可以通过索引改变列表中某些数据的值。通过分配值实现。

fruits[0] = 'pear'
>>> fruits[0]
‘apple’
 
>>> fruits[0] = 'pear’
>>> fruits[0]
‘pear’

以上就是python列表索引的两种用法,希望对大家有所帮助。更多编程基础知识学习:python学习网

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

课程教程:python列表索引的两种用法

上一篇:python使用append添加数据

下一篇:没有了

站点信息

  • 文章统计篇文章