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