练习1
Posted yafeng666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习1相关的知识,希望对你有一定的参考价值。
‘‘‘有一个列表[3,4,1,2,5,6,6,5,4,3,3]请写出一个函数,找出该列表中没有重复的数的总和‘‘‘ def func(l): res = [] sum_s = 0 for i in l: if i not in res: res.append(i) sum_s += i return sum_s list1 = [3, 4, 1, 2, 5, 6, 6, 5, 4, 3, 3] print(func(list1)) # 21
以上是关于练习1的主要内容,如果未能解决你的问题,请参考以下文章