上一篇文章為:→ 3.3.9for循環(huán)
元組
Python的元組與列表類似姿现,不同之處在于元組的元素不能修改。元組使用小括號(hào)肖抱,列表使用方括號(hào)建钥。
>>> aTuple = ('et',77,99.9)
>>> aTuple
('et',77,99.9)
<1>訪問元組
<2>修改元組
說明: python中不允許修改元組的數(shù)據(jù),包括不能刪除其中的元素虐沥。
<3>元組的內(nèi)置函數(shù)count, index
index和count與字符串和列表中的用法相同
>>> a = ('a', 'b', 'c', 'a', 'b')
>>> a.index('a', 1, 3) # 注意是左閉右開區(qū)間
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: tuple.index(x): x not in tuple
>>> a.index('a', 1, 4)
3
>>> a.count('b')
2
>>> a.count('d')
0