Python -- 处理列表的部分元素

处理列表的部分元素

1.切片

要创建切片,可指定要使用的第一个元素的索引和最后一个元素的索引+1。与函数range()一样。
例如:

players = ['a', 'b', 'c', 'd', 'e']
print(players[0:

你可能感兴趣的:(Python学习笔记,python,vscode)