click below
click below
Normal Size Small Size show me how
CSP - Chapter 6
Term | Definition |
---|---|
Abstraction | focusing on just the important details in a context. |
Actual Parameter/argument | a value passed into a procedure or function when it is called |
Call | run or execute a procedure or function by using the name of the procedure or function followed by values to pass into the procedure or function |
Define | creating new procedure or function in Python using the def keyword |
Execute | to run or call a procedure or function |
Formal Parameter | named input in the definition of a procedure or function |
Function | named set of instructions that returns a result |
Library | named group of related procedures and functions |
Procedure | named set of instructions that does not return a result, but can cause something to happen |
Run | to call or execute a procedure or function |