Python/gloss python set

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python集

Set

集合是无序且无索引的集合。

在Python中,集用大括号括起来。

创建一个集合:

thisset = {"apple", "banana", "cherry"}
print(thisset)

注意: 集合是无序的,因此您无法确定项目将以什么顺序出现。