Term
|
Definition
A general process for solving a category of problems. |
|
|
Term
|
Definition
A value provided to a function when the function is called. This value is assigned to the corresponding parameter in the function. |
|
|
Term
|
Definition
The sequence of statements inside a function definition. |
|
|
Term
|
Definition
Using an expression as part of a larger expression, or a statement as part of a larger statement. |
|
|
Term
|
Definition
Pertainingtoaprogramthatdoesthesamethingeachtimeitruns, given the same inputs. |
|
|
Term
|
Definition
The syntax for calling a function in another module by specifying the module name followed by a dot (period) and the function name. |
|
|
Term
|
Definition
The order in which statements are executed during a program run. |
|
|
Term
|
Definition
A function that returns a value. |
|
|
Term
|
Definition
A named sequence of statements that performs some useful operation. Functions may or may not take arguments and may or may not produce a result. |
|
|
Term
|
Definition
A statement that executes a function. It consists of the function name followed by an argument list. |
|
|
Term
|
Definition
Astatementthatcreatesanewfunction,specifyingitsname, parameters, and the statements it executes. |
|
|
Term
|
Definition
A value created by a function definition. The name of the func- tion is a variable that refers to a function object. |
|
|
Term
|
Definition
The first line of a function definition. |
|
|
Term
|
Definition
A statement that reads a module file and creates a module object. |
|
|
Term
|
Definition
A value created by an import statement that provides access to the data and code defined in a module. |
|
|
Term
|
Definition
A name used inside a function to refer to the value passed as an argument. |
|
|
Term
|
Definition
Pertaining to a sequence of numbers that appear to be random, but are generated by a deterministic program. |
|
|
Term
|
Definition
The result of a function. If a function call is used as an expression, the return value is the value of the expression. |
|
|
Term
|
Definition
A function that does not return a value. |
|
|