`#-*-coding:utf-8-*- ‘‘‘ 写函数,检查获取传入列表或元组对象的所有奇数位索引对应的元素,并将其返回 ‘‘‘ def func(l): return l[1::2] print(func([1,2,3,4,5,7]))
原文地址:https://www.cnblogs.com/sunnybowen/p/10257583.html
时间: 2024-10-20 08:59:41
`#-*-coding:utf-8-*- ‘‘‘ 写函数,检查获取传入列表或元组对象的所有奇数位索引对应的元素,并将其返回 ‘‘‘ def func(l): return l[1::2] print(func([1,2,3,4,5,7]))
原文地址:https://www.cnblogs.com/sunnybowen/p/10257583.html