一、元组概述
元组和字符串都是有序的,不可修改的序列
二、元组的创建
举例:
#第一种创建方式
t = ('hello', 'world', 98)
t2='hello','xiaoming',76 #小括号可以省略
#元组中只有一个元素时,需要使用逗号和小括号
t3=('world',)
#第二种创建方式
t4 = tuple(('nihao','lilei',89))
# 结果
('hello', 'world', 98) <class 'tuple'>
('hello', 'xiaoming', 76) <class 'tuple'>
('world',) <class 'tuple'>
('nihao', 'lilei', 89) <class 'tuple'>
三、元组的设计
四、元组的遍历
五、其他
#元组的相加
tup1=(1,2,3)
tup2=('张三','李四','王五')
tup=tup1+tup2
print(tup,type(tup))
#删除整个元组
del tup
#print(tup) 报错
结果如下: