Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please use python b) Write a function called parse_functions that takes as parameter a string representing the name of a .py file. The function reads

Please use python

image text in transcribed

b) Write a function called parse_functions that takes as parameter a string representing the name of a .py file. The function reads and parses the Python file and returns a tuple of tuples where each tuple has its element O a function name, element 1 the line number, and element 2 the function code as a string (signature and body), with all comments removed. The top-level tuple returned must be ordered alphabetically by the function name. Function parse_functions must have a proper docstring and annotations. Use try/except and in case of an error print a user-friendly message to the terminal and re-raise the exception. Write in the main function code that calls parse_functions on the problem 1 Python file and displays the returned tuple. Example: suppose file funs.py has this content: # File with sample functions. def sum(x, y): # sums up two numbers "*"'"Adds two numbers. Returns the sum." return x + y # Returns the product. def mul(x, y): # multiplies two numbers #z is a local variable z = x*y return z def print_pretty(a): print("The result is {:.3f}.".format(a) #test these functions: print_pretty(mul(10, sum(3,5)) A call to parse_functions("funs.py") returns tuple: (("mul", 9, 'def mul(x, y): \tz = x*yin treturn zin'), ("print_pretty", 14, 'def print_pretty(a): In tprint("The result is {:.3f}.".format(a)) '), ("sum", 3, 'def sum(x, y): " "Adds two numbers. In Returns the sum.""'"nlyreturn a + bln))

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Modeling And Design

Authors: Toby J. Teorey, Sam S. Lightstone, Tom Nadeau, H.V. Jagadish

5th Edition

0123820200, 978-0123820204

More Books

Students also viewed these Databases questions