I edited my thread based on feedback. Basically, I need to use a couple of variables from function 1, and I need to print it in function 2.
How do I go about doing that?
Hope to hear from you.
Cake.
def function_one():
number_one = 5
number_two = 6
number_three = 7
def function_two():
print(number_one)
print(number_two)
print(number_three)
function_one()
function_two()