📜  for in list 以索引开始 python 代码示例

📅  最后修改于: 2022-03-11 14:46:29.255000             🧑  作者: Mango

代码示例1
for item in some_list[2:]:
    # do stuff

#This will start at the third element and iterate to the end.