stats

123456789101112131415161718192021222324252627282930313233343536
Across
  1. 2. programming: A programming system that is based around objects which can contain both data and code that manipulates that data
  2. 5. An operator that compares two values and produces Boolean values (True/False)
  3. 6. A data type that has only two possible values, usually true or false
  4. 9. A reserved keyword that executes when preceding conditions evaluate as False
  5. 10. A string at the beginning of a function’s body that summarizes the function’s behavior and explains its arguments and return values
  6. 12. A set of instructions for solving a problem or accomplishing a task
  7. 16. A function that belongs to a class and typically performs an action or operation
  8. 21. restrictions: Rules built into the syntax of a programming language
  9. 22. Converting data from one type to another (see explicit conversion)
  10. 24. Information given to a function in its parentheses
  11. 29. A data type that represents numbers that contain decimals
  12. 30. typing: Variables that can point to objects of any data type
  13. 31. A body of reusable code for performing specific processes or tasks
  14. 32. A sequence of characters and punctuation that contains textual information
  15. 33. conversion: The process Python uses to automatically convert one data type to another without user involvement
  16. 34. data type: A data type in which the values can never be altered or updated
  17. 35. A data type used to represent whole numbers without fractions
  18. 36. A reserved keyword that executes subsequent conditions when the previous conditions are not true
Down
  1. 1. A markup language that lets the user write formatted text in a coding environment or plain-text editor
  2. 3. An object’s data type that bundles data and functionality together
  3. 4. A named container which stores values in a reserved location in the computer’s memory
  4. 7. Notebook: An open-source web application for creating and sharing documents containing live code, mathematical formulas, visualizations, and text
  5. 8. The process of storing a value in a variable
  6. 11. A reserved keyword that sets up a condition in Python
  7. 13. The modular code input and output fields into which Jupyter Notebooks are partitioned
  8. 14. The ability of a program to alter its execution sequence
  9. 15. programming: The process of giving instructions to a computer to perform an action or set of actions
  10. 17. type: An attribute that describes a piece of data based on its values, its programming language, or the operations it can perform
  11. 18. notation: How to access the methods and attributes that belong to an instance of a class
  12. 19. A special word in a programming language that is reserved for a specific purpose and that can only be used for that purpose
  13. 20. conversion: The process of converting a data type of an object to a required data type
  14. 23. conventions: Consistent guidelines that describe the content, creation date, and version of a file in its name
  15. 25. A combination of numbers, symbols, or other variables that produce a result when evaluated
  16. 26. An instance of a class; a fundamental building block of Python
  17. 27. A value associated with an object or class which is referenced by name using dot notation
  18. 28. languages: The words and symbols used to write instructions for computers to follow
  19. 30. A keyword that defines a function at the start of the function block
  20. 32. The structure of code words, symbols, placement, and punctuation