Programming Examples
Write a Python program to iterate through a Tuple using for loop.
Write a Python program to iterate through a Tuple using for loop.
If input is: (‘apple’, ‘banana’, ‘orange’) then output should be: apple
banana
orange
Output/ Explanation: apple
banana
orange