标签:src mos rom http hello comm 执行 .com stdin
Python的元组与列表类似,不同之处在于元组的元素不能修改。元组使用小括号,列表使用方括号。
aTuple=(‘hello‘,77,99,18.6) print(aTuple)
aTuple=(‘hello‘,77,99,18.6) print(aTuple) print(aTuple[0]) print(aTuple[3])
执行结果:
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
标签:src mos rom http hello comm 执行 .com stdin
原文地址:https://www.cnblogs.com/soaeon/p/8976418.html