this is probably an easy answer and having to do something to do with global variables maybe? how can i get a user inputted data from one function and have it able to be called and outputted with other functions in the same program. For example:
hydro = False
def main():
medium = input("soil or hydro")
def second():
if medium == "hydro":
hydro = True
main()
second()