python 语言教程元组
Posted thefist11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 语言教程元组相关的知识,希望对你有一定的参考价值。
1. 定义
元组与列表类似,不同之处在于元组的元素不能修改。
元组使用小括号,列表使用方括号。
元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。
eg.
tup1 = ('physics', 'chemistry', 1997, 2000)
tup2 = (1, 2, 3, 4, 5 )
tup3 = "a", "b", "c", "d"
1.1 创建空元组
tup1 = ()
#元组中只包含一个元素时,需要在元素后面添加逗号
tup1 = (50,)
1.2 访问元组
元组可以使用下标索引来访问元组中的值
eg.
#!/usr/bin/python
tup1 = ('physics', 'chemistry', 1997, 2000)
tup2 = (1, 2, 3, 4, 5, 6, 7 )
print "tup1[0]: ", tup1[0]
print "tup2[1:5]: ", tup2[1:5]
输出结果:
tup1[0]: physics
tup2[1:5]: (2, 3, 4, 5)
1.3 修改元组
元组中的元素值是不允许修改的,但我们可以对元组进行连接组合
#!/usr/bin/python
# -*- coding: UTF-8 -*-
tup1 = (12, 34.56)
tup2 = ('abc', 'xyz')
#以下修改元组元素操作是非法的。
#tup1[0] = 100
#创建一个新的元组
tup3 = tup1 + tup2
print tup3
输出结果:
(12, 34.56, 'abc', 'xyz')
1.4 删除元组
元组中的元素值是不允许删除的,但我们可以使用del语句来删除整个元组
eg.
#!/usr/bin/python
tup = ('physics', 'chemistry', 1997, 2000)
print tup
del tup
print "After deleting tup : "
print tup
以上实例元组被删除后,输出变量会有异常信息,输出如下所示:
('physics', 'chemistry', 1997, 2000)
After deleting tup :
Traceback (most recent call last):
File "test.py", line 9, in <module>
print tup
NameError: name 'tup' is not defined
以上是关于python 语言教程元组的主要内容,如果未能解决你的问题,请参考以下文章