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