December 2009
Beginner to intermediate
360 pages
11h 12m
English
This chapter covers
This chapter assumes you’re familiar with function definitions in at least one other computer language and with the concepts that correspond to function definitions, arguments, parameters, and so forth.
The basic syntax for a Python function definition is
def name(parameter1, parameter2, . . .):
body
As it does with control structures, Python uses indentation to delimit the body of the function definition. The following simple example puts the factorial code from a previous section into a ...
Read now
Unlock full access