Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 595 Bytes

38.set、list、tuple.md

File metadata and controls

50 lines (34 loc) · 595 Bytes

set、list、tuple

一.set集合

set是集合类型

结构:

{值1值2值3}

特点:

集合无重复内容

集合没有顺序

不能获取也不能修改

可以移除和添加

可以遍历取值

二.list列表

结构:

[值1值2值3]

三.tuple元组

结构:

(值1值2值3)

特点:

是其内部的值是不可变的

四.相互转换

集合元组列表他们之间是可以相互转换的

使用set,可以快速的完成对list中的元素去重复的功能