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