python列表索引的两种用法
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列表" title="python列表">python列表索引的两种用法,希望对大家有所帮助。更多编程基础知识学习:python学习网
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
以上是 python列表索引的两种用法 的全部内容, 来源链接: utcz.com/z/544383.html