For example, we have this:
def function_one():
print("Function one")
def function_two():
print("Function two")
def function_three():
print("Function three")
And wee need to see this:
(function_one, function_two, function_three)
I tryed ast library, but it shows only first layer of function.
New contributor
Alexey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.