Question: Please do in Python 3 IDE 3. Write a program to remove all duplicates from a list. a. def createList()- allow the user to input

Please do in Python 3 IDE

3. Write a program to remove all duplicates from a list. a. def createList()- allow the user to input data into the list b. def removeDuplicates() function will remove duplicates c. def main()- call the above functions and print program run: Original List : [1, 2, 3, 4, 5, 6, 7, 6, 5, 4] List after removing duplicates : [1, 2, 3, 4, 5, 6, 7] 4. 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!