Python习题集(十二)

简介: Python习题集(十二)

每天一习题,提升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)
相关文章
|
7月前
|
物联网 Python
2024年Python最全信息技术导论——物联网技术习题整理(1),Python面试题库
2024年Python最全信息技术导论——物联网技术习题整理(1),Python面试题库
2024年Python最全信息技术导论——物联网技术习题整理(1),Python面试题库
|
7月前
|
存储 Python
【python】习题第10周题解
【python】习题第10周题解
|
7月前
|
Python
【python】习题第9周
【python】习题第9周
|
7月前
|
自然语言处理 Python
【python】习题第7周(上)
【python】习题第7周(上)
|
7月前
|
Python
【python】习题 1-5周(上)
【python】习题 1-5周(上)
|
7月前
|
Python
【python】习题 第10周
【python】习题 第10周
|
7月前
|
数据安全/隐私保护 Python
【python】习题第8周
【python】习题第8周
|
7月前
|
Python
【python】习题第7周(下)
【python】习题第7周(下)
|
7月前
|
Python
【python】习题 6-10周(下)
【python】习题 6-10周(下)
|
7月前
|
自然语言处理 数据安全/隐私保护 Python
【python】习题 6-10周(中)
【python】习题 6-10周(中)