. 创建和访问一个元组
- Python 的元组与列表类似,不同之处在于tuple被创建后就不能对其进行修改,类似字符串。
- 元组使用小括号,列表使用方括号。
- 元组与列表类似,也用整数来对它进行索引 (indexing) 和切片 (slicing)。
【例子】
1
t1 = (1, 10.31, 'python')
2
t2 = 1, 10.31, 'python'
3
print(t1, type(t1))
4
# (1, 10.31, 'python') <class 'tuple'>
5
6
print(t2, type(t2))
7
# (1, 10.31, 'python') <class 'tuple'>
8
9
tuple1 = (1, 2, 3, 4, 5, 6, 7, 8)
10
print(tuple1[1]) # 2
11
print(tuple1[5:]) # (6, 7, 8)
12
print(tuple1[:5]) # (1, 2, 3, 4, 5)
13
tuple2 = tuple1[:]
14
print(tuple2) # (1, 2, 3, 4, 5, 6, 7, 8)
(1, 10.31, 'python') <class 'tuple'> (1, 10.31, 'python') <class 'tuple'> 2 (6, 7, 8)