Python Commands

1234567891011
Across
  1. 3. It is an alternative statement that is executed if the result of a previous test condition evaluates to false.
  2. 6. It is a keyword that is used like return, but the function will return a generator.
  3. 10. It allows you to modify the variable outside of the current scope.
  4. 11. It is used when debugging code. It lets you test if a condition in your code returns True, if not, the program will raise an Error.
Down
  1. 1. It is used to define a null value, or no value at all.
  2. 2. This block lets you check some code for errors.
  3. 4. It is a small anonymous function can take any number of arguments, but can only have one expression.
  4. 5. It refers to allowing a Python file or a Python module to access the script from another Python file or module.
  5. 7. It is used for decision-making operations. It contains a body of code which runs only when the condition given in the statement is true.
  6. 8. It is used to delete objects.
  7. 9. It is a code template for creating objects