Python_List
1.List中可以有另一个list
>>> fam2 = [['A', 1], ['B', 2],['C', 3]]
>>> fam2
[['A', 1], ['B', 2], ['C', 3]]
2.list的下标从0开始而且可以逆向取元素
>>> fam = ['liz', 1.73, 'emma', 1.68, 'mom',1.71, 'dad', 1.89]
>>> print fam[0]
liz
>>> print fam[3]
1.68
>>> print fam[-1]
1.89
>>> print fam[-8]
liz
文章图片
image.png
文章图片
image.png 3.list的切片
>>> fam
['liz', 1.73, 'emma', 1.68, 'mom', 1.71, 'dad', 1.89]
>>> fam[3:5]
[1.68, 'mom']
>>> fam[1:4]
[1.73, 'emma', 1.68]
文章图片
image.png
文章图片
image.png
【Python_List】包含起点但是不包含终点
可以不指定具体起点或终点
文章图片
image.png
这样分别对应从起点或直到终点
文章图片
image.png
推荐阅读
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- python自定义封装带颜色的logging模块
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- Python基础|Python基础 - 练习1
- Python爬虫|Python爬虫 --- 1.4 正则表达式(re库)
- Python(pathlib模块)
- python青少年编程比赛_第十一届蓝桥杯大赛青少年创意编程组比赛细则
- Python数据分析(一)(Matplotlib使用)
- Python|Python 9.20