Python

12345678910111213141516171819
Across
  1. 2. A Python loop structure that continues until a condition is false
  2. 5. A function that allows iteration over a sequence without creating an entire list
  3. 9. A type of loop that iterates over a sequence such as a list or string
  4. 10. The keyword used to define a block of code in a conditional statement
  5. 11. The creator of Python programming language
  6. 13. A high-level data structure that allows storing multiple values in an ordered manner
  7. 15. A sequence of immutable values, similar to a list but with parentheses instead of square brackets
  8. 17. The statement used to handle exceptions in Python
  9. 18. A built-in function used to import external or custom modules
  10. 19. The programming concept that refers to a reusable piece of software that contains multiple modules
Down
  1. 1. A built-in data type used for storing immutable key-value pairs
  2. 3. A control statement that skips the rest of the current iteration and moves to the next one
  3. 4. The keyword used to define a function in Python
  4. 6. The function used to display output in Python
  5. 7. The type used to store decimal numbers in Python
  6. 8. The Python feature that allows organizing code into reusable units
  7. 12. A method used to split a string into a list based on a delimiter
  8. 14. The data type that holds textual data in Python
  9. 16. The keyword used to exit from a loop immediately