Python Logic Crossword Challenge

1234567891011121314151617181920
Across
  1. 2. – A data type that holds either True or False.
  2. 5. – Type of loop that repeats while a condition is true.
  3. 7. – A loop that runs a set number of times.
  4. 9. – Used to change data from one type to another.
  5. 10. – Used to convert a value to an integer.
  6. 11. – Statement used to skip the rest of a loop iteration.
  7. 12. – Data type used for numbers with decimals.
  8. 13. – Used to check if a number is even or odd using division remainder.
  9. 16. – Used to get information from a user.
  10. 17. – Keyword that starts a conditional statement.
  11. 18. – Function used to display text on the screen.
  12. 20. – A symbol used to add a comment in Python.
Down
  1. 1. – Keyword that ends a conditional chain when no other is true.
  2. 3. – Operator used to compare if two values are the same.
  3. 4. – Used to display multiple lines of text neatly.
  4. 6. – Value that cannot be changed once assigned (string, int, etc.).
  5. 8. – Used to combine strings together.
  6. 14. – Keyword used for “otherwise if” in a conditional.
  7. 15. – A data type used for words or text.
  8. 19. – A container that stores a value for later use.