从元组返回迭代器从元组返回迭代器mytuple = ("apple", "banana", "cherry")myit = iter(mytuple) print(next(myit))print(next(myit))print(next(myit))