list索引 [:]和len()基础小例子

list是Python的内建序列中极其常用的,基础索引更是常用中的常用,那就上几个小例子加强理解。

先创个list

""" 运行 """
studytest_X01 = [1, 2, 42, 51, 11, 55, 33, 44, 66, 24, 23, 64]

看看长度叭 

""" 运行 """
len(studytest_X01)

""" 结果 """
12

看完长度,看索引。就直接上例子了,毕竟打代码的聪明boy&girl扫一眼就懂。

""" 运行 """
print(studytest_X01[1])
""" 结果 """
2

""" 运行 """
print(studytest_X01[-1:])
""" 结果 """
[64]

""" 运行 """
print(studytest_X01[-5:])
""" 结果 """
[44, 66, 24, 23, 64]

""" 运行 """
print(studytest_X01[-5])
""" 结果 """
44

""" 运行 """
print(studytest_X01[-5:])
""" 结果 """
[44, 66, 24, 23, 64]

""" 运行 """
print(studytest_X01[:2])
""" 结果 """
[1, 2]

""" 运行 """
print(studytest_X01[:4])
""" 结果 """
[1, 2, 42, 51]

""" 运行 """
print(studytest_X01[:-4])
""" 结果 """
[1, 2, 42, 51, 11, 55, 33, 44]

""" 运行 """
print(studytest_X01[:-1])
""" 结果 """
[1, 2, 42, 51, 11, 55, 33, 44, 66, 24, 23]

你可能感兴趣的:(大数据)