# 前言
Python作为目前最火的编程语言之一,是一门解释型的高级编程语言,特点是简单明确。今天我们来简单介绍一下其中的列表、元祖、字典和集合,希望大家多多讨论。
# 列表(list)
**具有以下特点:**
**1.可以用list()函数或者方括号[]创建,元素之间用逗号‘,’分隔。**
**2.列表的元素不需要具有相同的类型**
**3.使用索引来访问元素**
**4.可切片**
![image.png](https://upload-images.jianshu.io/upload_images/25205170-c3dd6d721c13f7c6.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
>本期小编推送2021初学者一定会用到的Python资料,含有小编自己呕心沥血整理的免费书籍/视频/在线文档和编辑器/源代码,关于`Python`的安装qun:850973621
结果:
![image.png](https://upload-images.jianshu.io/upload_images/25205170-ea1ce4e35aaba7cb.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
**方法:**
![image.png](https://upload-images.jianshu.io/upload_images/25205170-7118eb0700bd75e1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
# 元组
元组跟列表很像,只不过元组用小括号来实现(),这里要区分好和生成器的区别,两者都可用小括号来实现的
**具有以下特点:**
**1.可以用tuple()函数或者方括号()创建,元素之间用逗号’,‘’分隔。**
**2.元组的元素不需要具有相同的类型**
**3.使用索引来访问元素**
**4.可切片**
**5.元素的值一旦创建就不可修改!!!!!(这是区别与列表的一个特征)**
![image.png](https://upload-images.jianshu.io/upload_images/25205170-5048ad837279eceb.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
结果:
![image.png](https://upload-images.jianshu.io/upload_images/25205170-7186a0a83b2b5e70.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
**可进行的操作:**元组由于它的不可变性(第五点特点),相比列表的操作少了很多,只保留了index(),count()函数,用法同列表。
当然也可以用内置函数来对他进行操作,这些内置函数对于列表也适用。
![image.png](https://upload-images.jianshu.io/upload_images/25205170-2bd6c94d754cac4c.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
上面第五点在列表中的操作为(参考上面示例代码的第一点):
![image.png](https://upload-images.jianshu.io/upload_images/25205170-6c59a92759833904.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
# 字典(Dictionary)
字典是另一种可变容器模型,且可存储任意类型对象。
**具有以下特点:**
**1.元素由键(key)和值(value)组成**
**2.可以用dict()函数或者方括号()创建,元素之间用逗号’,‘’分隔,键与值之间用冒号”:”隔开**
**3.键必须是唯一的,但值则不必。值可以取任何数据类型,但键必须是不可变的,如字符串,数字或元组**
**4.使用键(key)来访问元素**
![image.png](https://upload-images.jianshu.io/upload_images/25205170-7fa67b1123ab431e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
结果:
![image.png](https://upload-images.jianshu.io/upload_images/25205170-a658625dc7730dbf.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
**字典的方法:**
![image.png](https://upload-images.jianshu.io/upload_images/25205170-be47ce7291fbfe20.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
# 集合(set)
**具有以下特点:**
**1.可以用set()函数或者方括号{}创建,元素之间用逗号”,”分隔。**
**2.与字典相比少了键**
**3.不可索引,不可切片**
**4.不可以有重复元素**
![image.png](https://upload-images.jianshu.io/upload_images/25205170-30828f244bb9114b.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
结果:**自动将重复元素去除**
![image.png](https://upload-images.jianshu.io/upload_images/25205170-167095900fd4cef8.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
关系测试:
![image.png](https://upload-images.jianshu.io/upload_images/25205170-bd67ad00ae2e1014.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
**集合的方法:**
![image.png](https://upload-images.jianshu.io/upload_images/25205170-fe307f3c4e5522cf.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
**以上只是小编的一些个人见解,希望大家多多提出宝贵意见,共同探讨,共同进步。关注小编,后续小编会带来更多更精彩的内容。你们的支持就是小编最大的动力!!!**