Introduction to Python

1234567891011121314151617181920212223
Across
  1. 4. A method for naming variables that have more than one word. E.g.home_address
  2. 9. A programming construct that lets the computer decide whether or not to execute a statement depending on whether or not a condition is true.
  3. 10. A method for naming variables that have more than one word. E.g. homeAddress
  4. 15. A sequence of items that can be different data types or the same data type.
  5. 17. A place holder in memory that can hold a value that can change during the running/execution of a program.
  6. 18. Adding something to the end of a sequence.
  7. 19. An operator that divides a number by another number, returning the remainder of the division operation.
  8. 20. A data type holding a list of letters, numbers, and special characters.
  9. 22. A loop that repeats a specified number of times.
  10. 23. A programming construct that lets the computer repeat a block of code, also known as a loop.
Down
  1. 1. A type of statement that will only execute if the if and elif statements aren’t true, but that will always execute if the other statements don’t. It doesn’t have a condition.
  2. 2. A number that represents how many times a number will be multiplied by itself. Can be expressed in Python with **.
  3. 3. A numeric data type that holds whole numbers (either positive or negative).
  4. 5. The actual data passed to and used in a subroutine.
  5. 6. The numeric position of an item in a sequence, starting with zero.
  6. 7. A data type holding either the values True or False.
  7. 8. A loop that repeats until a certain condition is no longer true.
  8. 11. Blocks of code in a program that can be repeatedly executed and may return values.
  9. 12. Combining two strings together using the plus operator.
  10. 13. The process of opening, reading, and writing data to files.
  11. 14. Placeholder that holds data that will be passed to and used in a subroutine.
  12. 16. A term that refers to both letters and numbers.
  13. 21. A technique used to convert one piece of data to another data type with a function such as int() or float().
  14. 22. A numeric data type that holds decimal numbers.