Python Warm-Up

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