Question: write a program that creates a tuple of numbers(both positive and negative). Make a new tuple that has only positive values from this tuple and
write a program that creates a tuple of numbers(both positive and negative). Make a new tuple that has only positive values from this tuple and sort it in descending order.
Tup = (-10, 1, 2, -9, 3, 4, -8, 5, 6)
Program run: Original Tuple : (-10, 1, 2, -9, 3, 4, -8, 5, 6) New Tuple with Positive numbers : (1, 2, 3, 4, 5, 6)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
