Python Vocabulary Chapter 2

12345678910111213141516
Across
  1. 4. A mistake in the code that the computer cannot understand
  2. 6. Mistakes in our code
  3. 8. A place within the computer’s CPU where it can hold information
  4. 9. Find and fix mistakes in a program
  5. 10. An object that allows us to keep track of information
  6. 11. Special characters used to surround strings (‘)
  7. 13. A new line in code
  8. 15. A basic date type in Python that is used to represent characters or what we know as text
  9. 16. Formatted strings. An advanced way to print strings that allows you to use variables, multiple lines and whitespace in the resulting string.
Down
  1. 1. Pieces of code that do not get translated by the computer
  2. 2. Pieces of information we give a function
  3. 3. The action of setting a piece of information or data to a variable
  4. 5. A designation or label given as a way for the computer to understand what type of input we are entering
  5. 7. Reserved characters {} used to hole a list’s collection of objects or to access an index
  6. 12. Special characters that alert the computer to ignore some tricky or troublesome code
  7. 14. A basic data type in Python that represents whole numbers.