3
I have sometimes managed to call functions that are further ahead in the program. However, it takes me hours to find a way to do so. What is the easiest way? Ex:
def paintball():
print "Olá"
adeus()
def adeus():
print "Adeus"
It’s just a simple way to show the problem.
Thanks ;) Because of not doing so I spend a lot of time trying.
– Henrique