Python3 列表(List)
Python3 列表(List)
列表是 Python 中最常用的基本数据结构之一,类似于其它编程语言中的动态数组。
列表按顺序保存元素,所有的元素占用一块连续的内存,每个元素都有自己的索引。
列表中的每个值都有对应的位置值,称之为索引,第一个索引是 0,第二个索引是 1,依此类推。
列表都可以进行的操作包括索引,切片,加,乘,检查成员。
此外,Python 已经内置确定列表的长度以及确定最大和最小的元素的方法。
1. 列表的定义
列表是最常用的 Python 数据类型,它可以作为一个方括号内的逗号分隔值出现。
列表的数据项不需要具有相同的类型
创建一个列表,只要把逗号分隔的不同的数据项使用方括号括起来即可。如下所示:
Python3 范例
list1 = ['Google', 'yapf', 1997, 2000] list2 = [1, 2, 3, 4, 5 ] list3 = ["a", "b", "c", "d"] list4 = ['red', 'green', 'blue', 'yellow', 'white', 'black']
相关文章
- Python continue 语句
- Python 操作 MySQL 数据库
- Python 递归
- Python 排序算法
- Python3 列表(List)
- Python3 if else 语句
- Python MongoDB 数据库连接 - PyMongo 驱动
- Python sqrt() 函数
- Python os.fdatasync() 方法
- Python os.fsync() 方法
- Python os.read() 方法
- Python os.stat() 方法
- Python os.tmpnam() 方法
- Python lower()方法
- Python rjust()方法
- Python zfill()方法
- Python List max()方法
- Python 字典 Dictionary update()方法
- Python Tuple 元组 cmp()方法
- Python time strptime()方法