其他分享
首页 > 其他分享> > 元组

元组

作者:互联网

<1> python中不允许修改元组的数据,包括不能删除其中的元素。

<2>In not in

a =('a','b')
if 'a' in a:
    print('in')

 

<3>count, index

index和count与字符串和列表中的用法相同

>>> a = ('a', 'b', 'c', 'a', 'b')
>>> a.index('a', 1, 3) # 注意是左闭右开区间
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

标签:count,index,tuple,元组,call,开区间
来源: https://blog.csdn.net/qq_35290785/article/details/90543056