Python 官方文档:入门教程 => 点击学习
本篇内容主要讲解“python容器的内置通用函数怎么使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“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 : hellotuple1 = ("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 : hellolist1 = ["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 : hellodict1 = {"name": "leixuewei"}dict2 = {"name": "leixuewei"}print("len : ", len(dict1))print("== : ", dict1 == dict2)print("dict1 : ", str(dict1))print("type : ", type(dict1))
到此,相信大家对“python容器的内置通用函数怎么使用”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
--结束END--
本文标题: python容器的内置通用函数怎么使用
本文链接: https://lsjlt.com/news/300354.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0