Intro Python Terms

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