I am working on a project, but I need to pass variables between functions and I do not know how. I am not very good at python at all. I just started learning it like a month ago. Anyhow I just want to know the simplest way to pass a variable between functions.
Can I just do this?
def a():
    variable1 = 0
    answer = raw_input()
    if answer == "a":
       print "Correct"
       b()
def b():
    #Variable1 should now be here also right?
    a()
 
     
     
    