Python Program to Print Odd Numbers in Tuple

Write a Python Program to Print Odd Numbers in a Tuple using for loop range (for i in range(len(oddTuple))). The if statement (if(oddTuple[i] % 2 != 0) checks whether each Tuple item divisible by two not equal to zero. If True, print that Odd number in a Tuple. # Tuple Odd Numbers oddTuple = (9, … Read more