Python Keywords

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