Right, so I'm making a program...
def aFunction():
aVariable = 5
aVariable = 9
aFunction()
...and of course this won't work. What I am trying to do is to make aVariable changeable in other functions, namely, aFunction. How do I do that? Can I use the global statement, I have heard some bad things about it, although I don't really remember why?