A value given to a function or program when it runs. The term is often used interchangeably (and inconsistently) with parameter.
An expression which is supposed to be true at a particular point in a program. Programmers typically put assertions in their code to check for errors; if the assertion fails (i.e., if the expression evaluates as false), the program halts and produces an error message. See also: invariant, precondition, postcondition.
To give a value a name by associating a variable with it.
(of a function): the statements that are executed when a function runs.
logical operators, i.e. and
, or
, and not
, that allow us to build more complex conditional statements from simpler conditional statements. See: conditional statements
A data structure inside a running program that keeps track of active function calls.
Treating text as if upper and lower case characters of the same letter were the same. See also: case-sensitive.
Treating text as if upper and lower case characters of the same letter are different. See also: case-insensitive.
A remark in a program that is intended to help human readers understand what is going on, but is ignored by the computer. Comments in Python, R, and the Unix shell start with a #
character and run to the end of the line; comments in SQL start with --
, and other languages have other conventions.
To apply one function to the result of another, such as f(g(x))
.
A statement in a program that might or might not be executed depending on whether a test is true or false. Also called "boolean expression."
(CSV) A common textual representation for tables in which the values in each row are separated by commas.
A value to use for a parameter if nothing is specified explicitly.
The practice of writing programs that check their own operation to catch errors as early as possible.
A character or characters used to separate individual values, such as the commas between columns in a CSV file.
Short for "documentation string", this refers to textual documentation embedded in Python programs. Unlike comments, docstrings are preserved in the running program and can be examined in interactive sessions.
Human-language text written to explain what software does, how it works, or how to use it.
A two-part notation used in many programming languages in which thing.component
refers to the component
belonging to thing
.
A character string containing no characters, often thought of as the "zero" of text.
The practice of hiding something's implementation details so that the rest of a program can worry about what it does rather than how it does it.
A number containing a fractional part and an exponent. See also: integer.
A loop that is executed once for each value in some kind of set, list, or range. See also: while loop.
A use of a function in another piece of software.
Unchangeable. The value of immutable data cannot be altered after it has been created. See also: mutable.
To load a library into a program.
An operator such as +=
that provides a shorthand notation for the common case in which the variable being assigned to is also an operand on the right hand side of the assignment. For example, the statement x += 3
means the same thing as x = x + 3
.
A subscript that specifies the location of a single value in a collection, such as a single pixel in an image.
A loop that is inside another loop. See also: outer loop.
A whole number, such as -12343. See also: floating-point number.
An expression whose value doesn't change during the execution of a program, typically used in an assertion. See also: precondition, postcondition.
A family of code units (functions, classes, variables) that implement a set of related tasks.
The variable that keeps track of the progress of the loop.
A variable contained within an object.
A function which is tied to a particular object. Each of an object's methods typically implements one of the things it can do, or one of the questions it can answer.
Changeable. The value of mutable data can be altered after it has been created. See also: immutable.
A collection of conceptually related variables (members) and functions using those variables (methods).
A loop that contains another loop. See also: inner loop.
A variable named in the function's declaration that is used to hold a value passed into the call. The term is often used interchangeably (and inconsistently) with argument.
A connection from the output of one program to the input of another. When two or more programs are connected in this way, they are called a "pipeline".
A condition that a function (or other block of code) guarantees is true once it has finished running. Postconditions are often represented using assertions.
A condition that must be true in order for a function (or other block of code) to run correctly.
To re-introduce a bug that was once fixed.
A statement that causes a function to stop executing and return a value to its caller immediately.
A collection of information that is presented in a specific order. For example, in Python, a string is a sequence of characters, while a list is a sequence of any variable.
An array's dimensions, represented as a vector. For example, a 5×3 array's shape is (5,3)
.
Failing without producing any warning messages. Silent failures are hard to detect and debug.
A regular subsequence of a larger sequence, such as the first five elements or every second element.
A data structure that provides storage for a function's local variables. Each time a function is called, a new stack frame is created and put on the top of the call stack. When the function returns, the stack frame is discarded.
A process's default input stream. In interactive command-line applications, it is typically connected to the keyboard; in a pipe, it receives data from the standard output of the preceding process.
A process's default output stream. In interactive command-line applications, data sent to standard output is displayed on the screen; in a pipe, it is passed to the standard input of the next process.
Short for "character string", a sequence of zero or more characters.
A programming error that occurs when statements are in an order or contain characters not expected by the programming language.
A program, device, data set, or human being against which the results of a test can be compared.
The practice of writing unit tests before writing the code they test.
The sequence of function calls that led to an error.
An immutable sequence of values.
The classification of something in a program (for example, the contents of a variable) as a kind of number (e.g. floating-point, integer), string, or something else.
Indicates the nature of an error in a program. For example, in Python, an IOError
to problems with file input/output. See also: syntax error.
A loop that keeps executing as long as some condition is true. See also: for loop.
Any character or series of characters that represent horizontal or vertical space. Generally, space-bar, tab, return/enter. Some whitespace in python is represented differently than what you see. A return is \n
and tab \t
.