【Python语言基础】——Python 集合
Python语言基础——Python 教程
文章目录
- Python语言基础——Python 教程
- 一、Python 集合
一、Python 集合
集合(Set)
集合是无序和无索引的集合。在 Python 中,集合用花括号编写。
实例
创建集合:
thisset = {“apple”, “banana”, “cherry”}
print(thisset)
注释:集合是无序的,因此您无法确定项目的显示顺序。
访问项目
您无法通过引用索引来访问 set 中的项目,因为 set 是无序的,项目没有索引。
但是您可以使用 for 循环遍历 set 项目,或者使用 in 关键字查询集合中是否存在指定值。
实例
遍历集合,并打印值:
thisset = {“apple”, “banana”, “cherry”}
for x in thisset:
print(x)
实例
检查 set 中是否存在 “banana”:
thisset = {“apple”, “banana”, “cherry”}
print(“banana” in thisset)
更改项目
集合一旦创建,您就无法更改项目,但是您可以添加新项目。
添加项目
要将一个项添加到集合ÿ