python 区分输入的数字是奇数还是偶数 10

defeven_only(l):"""PRE:lisalistofintegers.POST:lremainsunchangedANDthefunctionreturns... def even_only(l):
"""
PRE: l is a list of integers.
POST: l remains unchanged AND the function returns a new list containing all (and only) the even elements of l.
"""

#- test harness: do not modify -#
l1 = [1, 3, 6, 10, 15, 21, 28]
l2 = [1, 4, 9, 16, 25]

ret1 = even_only(l1)
print ret1 # should be "[6, 10, 28]"
print l1 # should be "[1, 3, 6, 10, 15, 21, 28]"

ret2 = even_only(l2)
print ret2 # should be "[4, 16]"
print l2 # should be "[1, 4, 9, 16, 25]"

完善程序。。谢谢大侠。。。。
展开
 我来答
ht_goco
2014-01-09
知道答主
回答量:8
采纳率:100%
帮助的人:5.4万
展开全部
def even_only(l):
    y=[]
    for i in l:
        if i%2==1:
            y.append[i]
    return y
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式