Question: b) (3 points) You have these three data types math numbers = [3.14','1.62','2.7','3.36','1.41'] math_dict = {'PI': 1, 'Golden Radio': 2, 'Euler number: 3, 'Fibonacci constant':

b) (3 points) You have these three data types math numbers = ["3.14','1.62','2.7','3.36','1.41'] math_dict = {'PI': 1, 'Golden Radio': 2, 'Euler number: 3, 'Fibonacci constant': 4, 'Pythagoras constant: 5} "Python" You will merge them such that all will be converted into list, and then merged into a sing list, as shown below. You will use only unpacking method, any loop or any other method will be graded as zero (the solution is one liner). ['PI', 'Golden Radio', 'Euler number', ' Fibonacci constant', 'Pythagoras constant', '3.14', '1.62', '2.7', '3.36', '1.41', 'P', 'y', 't', 'h', 'o', 'n']
Step by Step Solution
There are 3 Steps involved in it
To achieve the desired single list using unpacking heres the solution ... View full answer
Get step-by-step solutions from verified subject matter experts
