I have the following function:
def second(first, a):
# i want to return the results of first(a) in this function.
I just can't figure out how i can put values in (first(a)) without creating another function, or using lambda or any other modules? Any help is appreciated.