python集合及集合函数

2021-05-17 03:30

阅读:680

标签:对象   类型   迭代   class   大括号   pytho   python   可变   不可   

通过大括号括起来,用逗号分隔元素,特点

1.由不同元素组成

2.无序

3.元素只能是不可变类型,即数字、字符串、布尔和元组

可直接定义集合s={不同元素},或者s=set(可迭代对象)

>>> s={1,‘a‘,‘b‘,‘a‘,5,1}
>>> s
{1, ‘b‘, ‘a‘, 5}
>>> s=set((1,8,2,‘r‘,2))
>>> s
{8, 1, 2, ‘r‘}

python集合及集合函数

标签:对象   类型   迭代   class   大括号   pytho   python   可变   不可   

原文地址:https://www.cnblogs.com/Forever77/p/9747200.html


评论


亲,登录后才可以留言!