序列类型
=====================序列类型介绍
1、可以通过下标取值
2、可以进行切片操作:获取数据中的某一段
[起始位置 :终止位置] --------左闭右开
元组和列表里面可以存放任意类型的数据:字符串、布尔值、列表、数值
元组 tuple类型
(‘python‘ , True, 666,[‘python‘ , ‘hello‘ , 666] )
列表 list类型
[‘python‘ , True, 666,[‘python‘ , ‘hello‘ , 666] ]
原文地址:https://www.cnblogs.com/erchun/p/12275865.html
时间: 2024-10-11 01:17:19