Python set() 函数
Python基础 2022-06-06 14:36:02小码哥的IT人生shichen
Python set() 函数
实例
创建包含水果名称的集合:
x = set(('apple', 'banana', 'cherry'))
完整实例:
x = set(("apple", "banana", "cherry"))
print(x)
# Note: the set list is unordered, so the result will display the items in a random order.
定义和用法
set() 函数创建集合对象。
集合列表中的项目是无序的,因此它将以随机顺序出现。
请在“Python 集合”一章中了解有关集合的更多知识。
语法
set(iterable)
参数值
参数 | 描述 |
---|---|
iterable | 必需。序列、集合或迭代器对象。 |