摘要: list中保留四字母的,然后return。 解 def friend(x): i = len(x) ii = [] a = 0 while a < i: if len(x[a]) == 4: ii.append(x[a]) a += 1 return ii 别人的超pythonic的题解。。 def 阅读全文
posted @ 2018-03-06 21:02 Ruohua3kou 阅读(224) 评论(0) 推荐(0) 编辑