Across
- 2. logical operator that is True when the value on the left OR on the right is True, but not both
- 8. logical operator that is True (or 1) when the value on the left AND right are both True
- 9. causes Python to choose what to do next
- 11. part or all of a line of code that Python calculates to determine a value
- 13. a line of code that tells Python to make some action happen
- 14. a type of value that can have many properties
- 15. a positive or negative whole number
Down
- 1. a value that is either True (or 1) or False (or 0)
- 3. rules that define the way code must be written
- 4. stores the value on the right side of the equal sign in the variable on the left side
- 5. a fixed chunk of information such as the number "10" or the string "Hello"
- 6. a line of code that Python ignores but which explains the program to programmers
- 7. a block of code that is performed repeatedly
- 10. logical operator that is True (or 1) when either the value on the left OR on the right is True
- 12. a sequence of any defined characters
