Python Program to Print Positive Numbers in Tuple

Write a Python Program to Print Positive Numbers in a Tuple using for loop range. The if statement (if(posTuple[i] >= 0)) checks whether the Tuple item is greater than or equals to zero. If True, print that Positive Tuple number. # Tuple Positive Numbers posTuple = (3, -8, 6, 4, -88, -11, 13, 19) print(“Positive … Read more