码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-11-08 15:04:24      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:end   元组   style   range   调用   索引   print   pen   def   

def f1(p):
    li = []
    for i in range(len(p)):
        if i % 2 == 1:
            li.append(p[i])
    return li
ret = f1([1,2,3,4,5])
print(ret)

 

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

标签:end   元组   style   range   调用   索引   print   pen   def   

原文地址:http://www.cnblogs.com/koushuige/p/7803456.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!