Python Program to Print Negative Numbers in Tuple

Write a Python Program to Print Negative Numbers in Tuple using for loop range. The if statement (if(negTuple[i] < 0)) checks whether the Tuple item is less than zero. If True, print that Negative Tuple number (print(negTuple[i], end = ” “)). # Tuple Negative Numbers negTuple = (3, -8, -22, 4, -98, 14, -33, -78, … Read more