📌  相关文章
📜  分步从列表元素调用 - TypeScript 代码示例

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

代码示例1
some_list[start:stop:step]
#example
l = list(range(0,9))
l[0::2] #> take the first position until the last by step 2