Chapter 1 Python Basics Vocabulary

123456789101112131415161718192021
Across
  1. 3. Finding and Fixing Errors
  2. 6. Programming instructions
  3. 8. A Box in the computers memory where we store values.
  4. 10. The most basic instruction in a programming language. Consists of at least 2 values and an operator
  5. 15. This statement stores a value in a variable. Consists of a name, an equals sign, and a value.
  6. 16. Copies a string an integer number of times. Uses an integer, the * operator, and the string.
  7. 17. A way of writing variables that uses underscores(_) to separate words.
  8. 20. A way of writing variables that capitalizes every letter
  9. 21. Whole numbers and their opposites (negatives)
Down
  1. 1. The creation of a variable.
  2. 2. Numbers with Decimals
  3. 4. The order in which operations are evaluated. In python we use a method similar to the one we use in math.
  4. 5. This data type reads as text and must be bound by quotes.
  5. 7. Lets you execute python code one line at a time.
  6. 9. Acronym for Read-Evaluate-Print Loop.
  7. 11. The act of entering instructions for the computer to perform
  8. 12. When you assign a new value to an already initialized variable.
  9. 13. The joining of 2 or more strings. Uses at least 2 strings and the + operator
  10. 14. A category for values.
  11. 18. To run a program
  12. 19. A programming language. The one we are learning in this class!