Python Keywords

123456789101112131415161718192021222324252627282930
Across
  1. 4. Access variable outside of block scope
  2. 5. Check an item is in a container
  3. 7. Always execute after a try block
  4. 10. Create a context handler block
  5. 11. Delete an identifier or dictionary key
  6. 12. A value with no meaning
  7. 14. Stop execution if a condition is false
  8. 16. Generate a value
  9. 17. Check two items are both true
  10. 19. Catchall condition for branching
  11. 20. A negative boolean value
  12. 21. Branch code on an expression
  13. 22. A positive boolean value
  14. 23. Do nothing
  15. 24. Create a coroutine function
  16. 27. Create an exception
  17. 29. Loop over a container
  18. 30. Prepare to catch an exception
Down
  1. 1. Exit a loop early
  2. 2. Declare an identifier as global variable
  3. 3. Skip to next iteration
  4. 6. Negate an item
  5. 8. Declare an anonymous function
  6. 9. Create a class
  7. 10. Loop when a condition is true
  8. 13. Catch a raised exception
  9. 15. End a function and output a value
  10. 17. Rename an imported identifier
  11. 18. Create a function
  12. 21. Check two identifiers are the same instance
  13. 24. Execute a coroutine function
  14. 25. Load an object from a module
  15. 26. Load a module
  16. 28. An alternative branch on a condition