Python集合的创建、使用和遍历操作是什么
Admin 2022-08-09 群英技术资讯 304 次浏览
使用内置函数set()进行转化或者使用{}包括起来的,集合中的元素:无序性,互异性,确定性。
举例:
numbers=set(range(0,7))//使用内置函数进行转化 print(numbers) print(type(numbers))
输出:
{0, 1, 2, 3, 4, 5, 6}
<class 'set'>
互异性
fruit={'apple','orange','banana',"apple",'apple','orange','banana',"apple"} print(fruit) print(type(fruit))
输出:
{'apple', 'banana', 'orange'}
<class 'set'>
集合中的元素不能通过下标访问。
举例:
fruit =set({'apple',9,"axn","dbu",12}) print(fruit[2])
add() 函数
举例:
fruit =set({'apple',9,"axn","dbu",12}) fruit.add("bc") print(fruit)
输出:
{'bc', 'apple', 9, 12, 'dbu', 'axn'}
pop()函数
举例:
fruit =set({'apple',9,"axn","dbu",12}) fruit.pop() print(fruit)
输出:
{'apple', 9, 12, 'axn'}
1:remove()函数,若该元素不存在则会报错
举例:
fruit =set({'apple',9,"axn","dbu",12}) fruit.remove("banana") print(fruit)
fruit =set({'apple',9,"axn","dbu",12,"apple"}) fruit.remove("apple") print(fruit)
输出:
{'dbu', 'axn', 9, 12}
2:discard()函数,若指定元素不存在不会报错
举例:
fruit =set({'apple',9,"axn","dbu",12,"apple"}) fruit.discard("banana") print(fruit)
输出:
{'dbu', 'apple', 9, 'axn', 12}
fruit =set({'apple',9,"axn","dbu",12,"apple"}) fruit.discard("apple") print(fruit)
输出:
{'dbu', 'axn', 9, 12}
if in/not in语句
举例:
fruit =set({'apple',9,"axn","dbu",12,"apple"}) if "apple" in fruit: print("yes") else: print("NO") if "banana" not in fruit: print("YES") else: print("NO")
输出:
yes
YES
for循环
fruit =set({'apple',9,"axn","dbu",12,"apple"}) for i in fruit: print(i,end=' ')
输出:
axn 9 apple 12 dbu
len()函数
举例:
fruit =set({'apple',9,"axn","dbu",12,"apple"}) print(len(fruit))
输出:
5//注意集合元素的唯一性特征
集合与字典:
s1=set({"name":"jason","age":19,"地址":"北京市"}) print(s1) print(type(s1))
输出:
{'地址', 'name', 'age'}//只输出键名
<class 'set'>
举例:
s1={("name","jason","age",19,"地址","北京市"),12,34,0} print(s1) print(type(s1))
输出:
{0, 34, ('name', 'jason', 'age', 19, '地址', '北京市'), 12}
<class 'set'>
使用内置函数进行转化:
s1=set({"name","jason","age",19,"地址","北京市"}) print(s1) print(type(s1))
输出:
{'age', 'jason', 19, '地址', '北京市', 'name'}
<class 'set'>
举例:
s2=set(["name","jason","age",19,"地址","北京市"]) print(s2) print(type(s2))
输出:
{'北京市', 'age', 'jason', 19, 'name', '地址'}
<class 'set'>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
在图像的处理过程中,经常需要从图像中将前景对象作为目标图像分割或者提取出来。本文就介绍了使用分水岭算法实现图像的分割与提取,感兴趣的可以了解一下
关于计算器的实现,不少朋友可能使用JavaScript或者PHP有实现过,是比较简单的。那么我们如果要用python来实现,怎样写一个计算器呢?下面就给大家分享一下实现示例以及代码。
Python函数-complex()。complex() 函数用于创建一个值为 real + imag * j 的复数或者转化一个字符串或数为复数。如果第一个参数为字符串,则不需要指定第二个参数。。
用Python来编写脚本简化日常的运维工作是Python的一个重要用途。在Linux下,有许多系统命令可以让我们时刻监控系统运行的状态,如ps,top,free等等。要获取这些系统信息,Python可以通过subprocess模块调用并获取结果。但这样做显得很麻烦,尤其是要写很多解析代码。
这篇文章主要为大家详细介绍了Python实现仓库管理系统,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008