其他分享
首页 > 其他分享> > 十二.元组

十二.元组

作者:互联网

目录

1.什么是元组

2.不可变序列与可变序列

3.元组的创建

4.为什么要将元组设计成不可变序列


1.什么是元组

.元组:Python内置的数据结构之一,是一个不可变序列

2.不可变序列与可变序列

3.元组的创建

t1=('python','1',90)
t2=tuple(('python','1','hello'))
print(type(t1))
print(type(t2))

打印:
<class 'tuple'>
<class 'tuple'>

4.为什么要将元组设计成不可变序列

print(t3)
t3[4].append(100)  #列表中添加元素
print(t3)


打印:
('python', '1', 90, 'hell', ['hell', 'word'], 50)
('python', '1', 90, 'hell', ['hell', 'word', 100], 50)

标签:对象,不可,十二,元组,可变,序列,hell
来源: https://blog.csdn.net/weixin_55298700/article/details/122715347