标签:
元组不能修改,创建语法很简单:使用逗号分隔了一些值,则自动创建了元组。
>>> 1,2,3
(1, 2, 3)
>>> 1,
(1,)
元组的节本操作同列表相同,除了没有像列表一样的方法,如
>>> x = 1,2,3
>>> x
(1, 2, 3)
>>> x[1]
2
>>> x[:2]
(1, 2)
tuple -- 以一个序列作为参数并把它转换为元组,如
>>> tuple("hello")
(‘h‘, ‘e‘, ‘l‘, ‘l‘, ‘o‘)
标签:
原文地址:http://www.cnblogs.com/qiantangbanmu/p/4302964.html