Run ยป
Result Size:
625 x 571
mytuple = ("apple", "banana", "cherry") myit = iter(mytuple) print(next(myit)) print(next(myit)) print(next(myit))
โ
x
mytuple
=
(
"apple"
,
"banana"
,
"cherry"
)
myit
=
iter
(
mytuple
)
โ
print
(
next
(
myit
))
print
(
next
(
myit
))
print
(
next
(
myit
))
โ
apple
banana
cherry