Python3.6全栈开发实例[001]

检查获取传入列表或元组对象的所有奇数位索引对应的元素,并将其作为新列表返回给调用者。

li = [11,22,33,44,55,66,77,88,99,000,111,222]
def func1(lst):
    new_li = []
    for i in range(0,len(lst),2):
        new_li.append(lst[i])
    return new_li
print(func1(li))

猜你喜欢

转载自www.cnblogs.com/apollo1616/p/9460483.html