Fork me on GitHub
  2020年5月20日
摘要: 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 阅读全文
posted @ 2020-05-20 17:17 OBOS 阅读(523) 评论(0) 推荐(0) 编辑
摘要: * jQuery操作标签* jQuery绑定事件* jQuery补充知识点* ### jQuery练习题 ```js $('#i1') r.fn.init [div#i1.container] $('h2') r.fn.init [h2, prevObject: r.fn.init(1)] $('i 阅读全文
posted @ 2020-05-20 16:39 OBOS 阅读(332) 评论(0) 推荐(0) 编辑