Python Keywords

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