摘要: def count_list(list_one): '''统计列表中元素大于列表长度''' count_num=Counter(list_one) print(count_num) #({5: 8, 6: 3, 'a': 1, 2: 1, 35: 1, 8: 1, 58: 1}) for k,v i 阅读全文
posted @ 2021-03-16 20:03 long2020 阅读(100) 评论(0) 推荐(0) 编辑