python如何取列表中的数据?

python

python中取列表中数据的方法:

1、通过索引(下标)的方式取值,0代表第一个,1代表第二个,2代表第三个

li = [1, 2, "python", 'beiye', ['ee',[1, 3, 5], 90], True]

print(li[0])

输出结果:

1

2、通过切片的方式取值(中间用:分割),切片的结果也是列表

li = [1, 2, "python", 'beiye', ['ee',[1, 3, 5], 90], True]

print(li[0:5])

输出结果:

[1, 2, 'python', 'beiye', ['ee', [1, 3, 5], 90]]

更多Python知识请关注。

以上是 python如何取列表中的数据? 的全部内容, 来源链接: utcz.com/z/528023.html

回到顶部