摘要: 集合的去重功能 创建集合时自动去重 >>> a = {'hello', 'hello', 'a', 'world', 'mike'} >>> a {'world', 'hello', 'mike', 'a'} # set()方法创建集合时,传参为序列 >>> b = set(('hello', 'h 阅读全文
posted @ 2022-03-04 15:00 hook_what 阅读(60) 评论(0) 推荐(0) 编辑