Code:
Training()
#Finish
#Function Training
def Training():
print("The Training")
Code:
Training()
#Finish
#Function Training
def Training():
print("The Training")
Code is (usually) executed line by line, so your program will first try to access a function Training
and then define a function Training
. You need to define your function before you can call it:
def Training():
print("The Training")
Training()
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.