码迷,mamicode.com
首页 > 编程语言 > 详细

Python习题集(十二)

时间:2020-03-21 17:55:37      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:pytho   tps   style   font   str   com   等于   color   循环   

每天一习题,提升Python不是问题!!有更简洁的写法请评论告知我!

https://www.cnblogs.com/poloyy/category/1676599.html

 

题目

请写一个函数find_odd,参数是1个列表,请返回该列表中出现奇数次的元素
比如 
find_odd([1, 1, 2, -2, 5, 2, 4, 4, -1, -2, 5]) ? -1
find_odd([20, 1, 1, 2, 2, 3, 3, 5, 5, 4, 20, 4, 5]) ? 5
find_odd([10]) ? 10

 

解题思路

  1. 循环列表
  2. 调用列表内置统计函数计算当前元素出现次数
  3. 出现次数模2是否不等于0

 

答案

def find_odd(lists):
    res = []
    for i in lists:
        if lists.count(i) % 2 != 0:
            if i not in res:
                res.append(i)
    print(res)


lists = [1, 1, 2, -2, 5, 2, 4, 4, -1, -2, 5]
list1 = [20, 1, 1, 2, 2, 3, 3, 5, 5, 4, 20, 4, 5]
list2 = [10, 1, 1, 1, 2, 2, 10, 5]
find_odd(lists)
find_odd(list1)
find_odd(list2)

 

Python习题集(十二)

标签:pytho   tps   style   font   str   com   等于   color   循环   

原文地址:https://www.cnblogs.com/poloyy/p/12540328.html

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