Weyl E Room Team 4

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