Unit 7 Functions in Python
Across
- 3. A variable used to send information to a subprogram.
- 5. what it's called when you are ready to use a function/subprogram
- 7. Another name for a function, which is a collection of commands that are given a name.
- 8. A command pr key word that creates a function or subprogram.
- 9. Returns position of the first appearance of a value in the string: returns -1 if the value is not found. (The first character in the string is in position 0.)
- 10. This is what we call the central part of the program.
- 12. A keyword that tells a function or subprogram what value to send back.
Down
- 1. Reading through code to find errors and predict results.
- 2. Replaces a specific value in a string with a specified value
- 4. the variable used in the call that passes through the parameters of a function/subprogram
- 6. A variable that exists only inside a function.
- 11. This term stands for "not a number" and is a standard output that expresses that a value is not a number.