可以使用for循环遍历元组项。循环访问并打印值:fruits = ("apple", "banana", "cherry")for x in fruits: print(x)执行结果:applebananacherry