您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍“python容器的内置通用函数如何使用”,在日常操作中,相信很多人在python容器的内置通用函数如何使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”python容器的内置通用函数如何使用”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
除了数据的增删查改(除了tuple不可变长度和元素不可变),我们还需要下面的操作:
比较比对操作
计算元素数量
把容器打印输出
获取容器类型
使用 == 操作符号比对是否相等 len(容器对象) str(容器对象) type(容器对象)#type支持对各种对象的类型进行判断
严格来说,我们不用tuple元组类型做数据容器。
我们更多用它来描述定长的结构。
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/11/8 12:40 上午 # @Author : LeiXueWei # @CSDN/Juejin/Wechat: 雷学委 # @XueWeiTag: CodingDemo # @File : __init__.py.py # @Project : hello tuple1 = ("name", "leixuewei") tuple2 = ("name", "leixuewei") print("len : ", len(tuple1)) print("== : ", tuple1 == tuple2) print("dict1 : ", str(tuple1)) print("type : ", type(tuple1))
运行效果如下:
下面是list的同样操作:
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/11/8 12:40 上午 # @Author : LeiXueWei # @CSDN/Juejin/Wechat: 雷学委 # @XueWeiTag: CodingDemo # @File : commonlistops.py # @Project : hello list1 = ["name", "leixuewei"] list2 = ["name", "leixuewei"] print("len : ", len(list1)) print("== : ", list1 == list2) print("list1 : ", str(list1)) print("type : ", type(list1))
运行效果如下:
下面是dict字典类型的操作:
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/11/8 12:40 上午 # @Author : LeiXueWei # @CSDN/Juejin/Wechat: 雷学委 # @XueWeiTag: CodingDemo # @File : __init__.py.py # @Project : hello dict1 = {"name": "leixuewei"} dict2 = {"name": "leixuewei"} print("len : ", len(dict1)) print("== : ", dict1 == dict2) print("dict1 : ", str(dict1)) print("type : ", type(dict1))
运行效果如下:
到此,关于“python容器的内置通用函数如何使用”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。