Question: My first Python program with Python Lists. Write a Python program that implements the following steps: 1. Asks the user to enter a series of

My first Python program with Python Lists. Write a Python program that implements the following steps: 1. Asks the user to enter a series of integer numbers separated by a coma character:",". Use integers between 1 and 10 as input for testing to facilitate evaluation. 2. Convert the input into a Python List. a. How do you convert a string into a Python List? b. What is the type of the elements in the list - do we need to convert them? 3. Sort the integers in descending order. a. How do you sort a List in descending order? 4. Extract all even integers and add them to another list. a. How do we determine whether the number is odd or even? b. How do we extract an element from a list? C. How do we add an element to another list? 5. Extract every second element of the remaining elements in the original input list. a. How do we extract elements from a list? b. Are we modifying the original list or creating a copy
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
