Python笔记整理第四十六篇(元组的遍历)
元组是可迭代对象,所以可以使用for…in进行遍历 代码如下:
#打工人:朱乔栋
#革命尚未成功,同志仍需努力
'''y元组的遍历'''
t=('Python','world',98)
'''使用第一种获取元组元素的方式,使用索引'''
print(t[0])
print(t[1])
print(t[2])
#print(t[3]) #IndexError: tuple index out of range索引超出范围
'''遍历元组'''
for item in t:
print(item)
运行结果:
Python
world
98
Python
world
98
Process finished with exit code 0
共有 0 条评论