Across
- 3. text in code meant for humans, ignored by the computer
- 5. lets you check another condition if the first if was false
- 8. gives the reminder of division (7%3 = 1)
- 9. spaces at the start of a line that show code structure in python
- 11. a named storage place that holds a value
- 13. a variable type that can hold a whole number (no decimals)
- 18. using = to give a value to a variable
- 19. a variable type that can hold decimals
Down
- 1. raises a number to a power (2**3 = 8)
- 2. runs code line by line (as opposed to compile)
- 4. a group of indented statements that belong together (like inside an if or while)
- 6. turning source code into machine code
- 7. a loop that runs while a condition is true
- 10. a symbol like + or - that does math or comparisons
- 12. a variable type that is either true or false
- 13. a statement that only runs code only if something is true
- 14. runs only if none of the if or elif conditions were true
- 15. a reserved word in python (if, for, import) that can't be used as a variable name
- 16. a piece of text like "hello"
- 17. a loop that runs a fixed number of times
