Question: For this problem, you will be required to use a python's list comprehension Complete the function below, , that will take a list of dates

For this problem, you will be required to use a python's list comprehension Complete the function below, , that will take a list of dates in this format: and for each date returns the previous date in the format where is the month as locale's abbreviation (e.g Jan, Sep, Oct, Dec ctc). The function should therefore also return a list Example: Input Desired Output You can see that in the desired output list, each date is the corresponding previous day from the input list in the format More examples ['1999-81-21'] should return ['20 Jan 1999'] ['1999-81-21', '2822-12-30', '2099-12-21'] should return ['20 Jan 1999', '29 Dec 2022, ' 20 Dec 2099] More examples should return ['1999-01-21', '2022-12-38', '2099-12-21'] should return ['20 Jan 1999', '29 Dec 2022, '20 Dec 2099'] NB: Do not remove any of the original code. Only add to it def compute_prev_date(dates_list: list): " " return [ """your code here""n] ] NB: Do not remove any of the original code. Only add to it
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
