refers to data that provides information about other data. It describes various attributes of a piece of information, such as its format, size, author, creation date, and location.
2
New cards
comment
a piece of text in computer code that is ignored by the compiler but is helpful to readability and human understanding of the code. It is used to provide organization, explanations, notes, or reminders within the code.
3
New cards
debugging
the process of identifying and resolving errors or bugs in computer programs
4
New cards
\+
the symbol for addition in Python
5
New cards
\-
the symbol for subtraction in Python
6
New cards
\*
the symbol for multiplication in Python
7
New cards
/
the symbol for regular division in Python
8
New cards
//
the symbol for integer division in Python
9
New cards
%
the symbol for modular division in Python
10
New cards
\*\*
the symbol for exponentiation in Python
11
New cards
=
the “assign” symbol in Python
12
New cards
float( ) function
a function in Python that typecasts the parameter to a floating-point number
13
New cards
modular division
gives the remainder of an integer division problem
14
New cards
integer division
division in which the fractional part (remainder) is discarded
15
New cards
module
a collection of Python code that can be imported; each one is usually grouped by topic, such as math, sounds, graphics, etc.
16
New cards
import statement
a command that allows a programmer to pull in modules already filled with code, which can can add extra features to our programs
17
New cards
function
a reusable block of code that performs a specific task; it is defined with a name, a set of input parameters (optional), and a return value (optional); it’s an example of abstraction in programming
18
New cards
math module
a collection of Python code that can be imported to extend the ability of Python to perform more complex math operations
19
New cards
sqrt( )
a function in the math module of Python that returns the square root of the parameter
20
New cards
pow( )
a function in the math module of Python that returns the result of the first parameter raised to the power of the second parameter
21
New cards
fabs( )
a function in the math module of Python that returns the absolute value of the parameter as a float
22
New cards
random module
a collection of Python code that can be imported to help generate randomness
23
New cards
randint( )
a function in the random module that returns a random integer between (and including) the two parameters
24
New cards
abstraction
the process of removing or suppressing details to create a manageable level of complexity
25
New cards
high level programming language
a language that contains a significant amount of abstraction, is easier for humans to read, is guaranteed to be unambiguous, and must be compiled before being executed
26
New cards
low level programming language
a language that contains little or no abstraction, is difficult for humans to read, is guaranteed to be unambiguous, and communicates directly with computer hardware
27
New cards
Machine Language
another name for binary language
28
New cards
Assembly Language
a low-level symbolic code that can communicate with computer hardware