+ 1
What does it mean to call a function
Name()
2 Answers
+ 2
Mike Harris
In Python, calling a function executes a set of instructions defined in that function.
Functions may contain parameters, but these are not always required.
Hope this helps :)
0
When you call Name()
if Name is defined as:
def Name():
statements
then statements are executed like any other code.
If Name is not defined, a NameError will be raised.