Posts

Showing posts with the label Glossary of Terms Used in Python Programming Language

Annexure 1: Glossary of Terms Used in Python Programming Language

Image
Here’s a Glossary of Terms Used in Python Programming Language : Core Concepts: Variable:  A named storage location that holds data (like numbers, text, or objects).   Data Type:  The kind of data a variable can store (e.g., integer, float, string, boolean).   Object:  A fundamental unit in Python, representing a combination of data and associated actions (methods).   Function:  A reusable block of code that performs a specific task.   Method:  A function that is associated with an object.   Class:  A blueprint for creating objects, defining their attributes and methods.   Instance:  A specific object created from a class.   Attribute:  A value associated with an object, referenced by name using dotted expressions.   Indentation:  Python uses indentation (spaces or tabs) to define code blocks, which is crucial for code structure and readability.   Comment:  Text within the code tha...