I'm trying to be able call a function that is nested.
def function1():
#code here
def function2():
return #variable
def function3():
x = #the variable that is returned in function2
# I'm not sure how to get it to equal the variable that was returned in function2
Thanks for the help!