标签: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
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)
标签:pytho tps style font str com 等于 color 循环
原文地址:https://www.cnblogs.com/poloyy/p/12540328.html