Crossword: Python Warm-Up

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