【第三章】Python基础之元组tuple
元组tuple
1、一个有序的元素组成的集合
2、使用小括号 ( ) 表示
3、元组是不可变对象
初始化
tuple() -> empty tuple
tuple(iterable) -> tuple initialized from iterable's items
t1 = () # 空元组
t2 = (1,) # 必须有这个逗号
t3 = (1,) * 5 输出:(1, 1, 1, 1, 1)
t3 = (1) * 5 输出:5
t4 = (1, 2, 3)
t5 = 1, 'a'
t6 = (1, 2, 3, 1, 2, 3)
t7 = tuple() # 空元组
t8 = tuple(range(5))
t9 = tuple([1,2,3])
索引
索引和列表规则一样,不可以超界
输入:x = (1,2,3,4,'abc',range(5),[],(),None)
x
输出:(1, 2, 3, 4, 'abc', range(0, 5), [], (), None)
输入:x[0],x[-1]
输出:(1, None)
输入:x[0] = 100#TypeError: ‘tuple’对象不支持项赋值
输出:TypeError: 'tuple' object does not support item assignment
查询
方法和列表一样,时间复杂度也一样。index、count、len等
输入:x.index(2)
输出:1
输入:x.index(0)#ValueError: tuple.index(x): x不在元组中
输出:ValueError: tuple.index(x): x not in tuple
x.count(1)
1
len(x)
9
增删改
元组元素的个数在初始化的时候已经定义好了,所以不能为元组增加元素、也不能从中删除元素、也不 能修改元素的内容。
但是要注意下面这个例子
输入:(1,)+(1,)
输出:(1, 1)
输入:(1,3) * 3
输出:(1, 3, 1, 3, 1, 3)
输入:((1,),) * 3
输出:((1,), (1,), (1,))
输入:a = ([3],) * 3
a[0][0] = 500
a
输出:([500], [500], [500])
原文地址:https://blog.csdn.net/weixin_74814027/article/details/143896634
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!