码迷,mamicode.com
首页 > 移动开发 > 详细

append追加的使用

时间:2016-12-24 14:18:40      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:bin   []   log   pytho   return   class   color   使用   turn   

 1 #!/usr/bin/env python
 2 def fun(arg) :
 3     ret = []
 4     for i in range(len(arg)) :
 5         if i % 2 ==1 :
 6             ret.append(arg[i])
 7         else :
 8             pass
 9     return ret
10 li = [11,22,33,44,55]
11 r = fun(li)
12 print(li)
13 print(r)

 

append追加的使用

标签:bin   []   log   pytho   return   class   color   使用   turn   

原文地址:http://www.cnblogs.com/shiluoliming/p/6217109.html

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