Glossary Python Basics
Glossary Python Basics
Welcome! This alphabetized glossary contains many of the terms you'll find within this course. This
comprehensive glossary also includes additional industry-recognized terms not used in course videos. These
terms are important for you to recognize when working in the industry, participating in user groups, and
participating in other certificate programs.
Term Definition
Arithmetic operations are the basic calculations we make in everyday life like
Arithmetic
addition, subtraction, multiplication and division. It is also called as algebraic
Operations
operations or mathematical operations.
Assignment operator is a type of Binary operator that helps in modifying the variable
Assignment
to its left with the use of its value to the right. The symbol used for assignment
operator in Python
operator is "=".
A colon is used to represent an indented block. It is also used to fetch data and index
Colon
ranges or arrays.
Data engineers are responsible for turning raw data into information that an
Data engineering organization can understand and use. Their work involves blending, testing, and
optimizing data from numerous sources.
Data type refers to the type of value a variable has and what type of mathematical,
Data type
relational or logical operations can be applied without causing an error.
An escape sequence is two or more characters that often begin with an escape
Escape sequence
character that tell the computer to perform a function or command.
Forward slash Symbol “/“ used to perform various operation sin Python
Immutable Objects are of in-built datatypes like int, float, bool, string, Unicode, and
Immutable
tuple. In simple words, an immutable object can’t be changed after it is created.
An integer is the number zero (0), a positive natural number (1, 2, 3, and so on) or a
Integer
negative integer with a minus sign (−1, −2, −3, and so on.)
Mathematical Expressions in math are mathematical statements that have a minimum of two terms
expressions containing numbers or variables, or both, connected by an operator in between.
Mathematical The mathematical “operation” refers to calculating a value using operands and a
operations math operator.
Allows you to access elements of a sequence (such as a list, a string, or a tuple) from
Negative indexing
the end, using negative numbers as indexes.
Operators in
Operators are used to perform operations on variables and values.
Python
A special character is one that is not considered a number or letter. Symbols, accent
Special characters
marks, and punctuation marks are considered special characters.
Stride is the number of bytes from one row of pixels in memory to the next row of
Stride value
pixels in memory.
The process of converting one data type to another data type is called Typecasting or
Type casting
Type Coercion or Type Conversion.
Data types are the classification or categorization of data items. It represents the kind
Types in Python
of value that tells what operations can be performed on a particular data.