Across
- 4. Floating point number
- 6. A term that immediately ends the function's execution and sends a specified value back to the part of the code that called the function
- 7. A subprogram that runs when it is called
- 8. Another term used to describe a value passed into a function
- 10. To combine two or more strings into a single string
- 13. Data type that can be True or False
- 14. Python function that determines the length of a string
- 15. Similar to a dynamic array in other programming languages
- 19. Stores a reference to data to be used, or changed, at a later time
- 21. Changing a data type of a value to another data type
- 23. Python function that returns an immutable sequence of intergers
- 24. The position of an item in a sequence or list
- 25. When the value of an object cannot be changed after it is created it is...
- 27. A type of loop (variable repitition) that is useful when there is no easy way to predict the total number of times the loop will need to repeat
Down
- 1. In Python, function definitions must come _________ a function is used
- 2. The // operation
- 3. Boolean operator that flips a True to a False or a False to a True
- 5. The concept of testing code on a function by function basis with a robust ollection of input
- 7. A type of loop (fixed-repitition) that is useful when the loop repeats a predictable number of times
- 9. A term that describes a value passed into a function
- 10. The symbol, followed by indented text, that indicates the body of a function
- 11. Term that allows multiple conditions to be evaluated between an "if" and an "else"
- 12. Data type indicating single letters and text-based words
- 16. Python function that prompts the user to type in some text
- 17. math._____ returns the square root of a value
- 18. To break a problem down into sub-problems
- 20. Method used to insert a new item at the end of a list
- 21. The window where text based messages are displayed when using print()
- 22. Python keyword used to indicate that no value is returned from a function
- 25. Call or execute a function
- 26. The term that comes before a function name in the function definition header
