THINK Python Flashcards
Program
a sequence of instructions that specifies how to perform a computation. The computation might be something mathematical, such as solving a system of equations or finding the roots of a polynomial, but it can also be a symbolic computation, such as search- ing and replacing text in a document or something graphical, like processing an image or playing a video.
Input
Get data from the keyboard, a file, the network, or some other device.
Output
Display data on the screen, save it in a file, send it over the network, etc.
Math
Perform basic mathematical operations like addition and multiplication.
Conditional Execution
Check for certain conditions and run the appropriate code.
Repetition
Perform some action repeatedly, usually with some variation.
High-Level Language
A programming language like Python that is designed to be easy for humans to read and write.
Low-Level Language
A programming language that is designed to be easy for a computer to run; also called “machine language” or “assembly language”.
Portability
A property of a program that can run on more than one kind of computer.
Interpreter
A program that reads another program and executes it
Prompt
Characters displayed by the interpreter to indicate that it is ready to take input from the user.
Print Statement
An instruction that causes the Python interpreter to display a value on
the screen.
Operator
A special symbol that represents a simple computation like addition, multipli- cation, or string concatenation.
Value
One of the basic units of data, like a number or string, that a program manipulates.
Type
A category of values. The types we have seen so far are integers (type int), floating-
point numbers (type float), and strings (type str).
Integer
A type that represents whole numbers.
Floating-Point
A type that represents numbers with fractional parts.
String
A type that represents sequences of characters.
Formal Language
Any one of the languages that people have designed for specific purposes, such as representing mathematical ideas or computer programs; all program- ming languages are formal languages.
Token
One of the basic elements of the syntactic structure of a program, analogous to a word in a natural language.
Syntax
The rules that govern the structure of a program.
Parse
To examine a program and analyze the syntactic structure.
Bug
An error in a program.
Debugging
The process of finding and correcting bugs.
Variable
A name that refers to a value.
Assignment
A statement that assigns a value to a variable.
Keyword
A reserved word that is used to parse a program; you cannot use keywords like if, def, and while as variable names.
Operand
One of the values on which an operator operates.
Expression
A combination of variables, operators, and values that represents a single result.
Statement
A section of code that represents a command or action. So far, the statements we have seen are assignments and print statements.
Execute
To run a statement and do what it says.
Interactive Mode
A way of using the Python interpreter by typing code at the prompt.
Script Mode
A way of using the Python interpreter to read code from a script and run it.
Script
A program stored in a file.
Concatenate
To join two operants end to end.
Comment
Informationinaprogramthatismeantforotherprogrammers(oranyoneread-
ing the source code) and has no effect on the execution of the program.
Syntax Error
An error in a program that makes it impossible to parse (and therefore im- possible to interpret).
Exception
An error that is detected while the program is running.
Semantics
The meaning of a program.
Semantic Error
An error in a program that makes it do something other than what the programmer intended.
Method
A function that is associated with an object and called using dot notation.
Loop
A part of a program that can run repeatedly.
Encapsulation
The process of transforming a sequence of statements into a function definition.
Generalization
The process of replacing something unnecessarily specific (like a number) with something appropriately general (like a variable or parameter).
Keyword Argument
An argument that includes the name of the parameter as a “keyword”. page 33
Interface
A description of how to use a function, including the name and descriptions of the arguments and return value.
Refactoring
The process of modifying a working program to improve function interfaces and other qualities of the code.
Development Plan
A process for writing programs.
page 35
Docstring
A string that appears at the top of a function definition to document the function’s interface.
Precondition
A requirement that should be satisfied by the caller before the function starts.
page 36
Postcondition
A requirement that should be satisfied by the function before it ends.
page 36
Floor Division
//
Divides two numbers and rounds DOWN to the nearest integer.
Modulus Operator
%
Divides two numbers and returns the remainder.
Boolean Expression
An expression that is either True or False.
Relational Operator
One of the operators that compares its operands: ==, !=, >, <, >=, and <=.
Logical Operator
One of the operators that combines boolean expressions: and, or, not.
Conditional Statement
A statement that controls the flow of execution depending on some condition.
Condition
A boolean expression in a conditional statement that determines which branch runs.
Compound Statement
A statement that consists of a header and a body. The header ends with a colon (:). The body is indented relative to the header.
Branch
One of the alternative sequences of statements in a conditional statement.
Chained Conditional
A conditional statement with a series of alternative branches.
Nested Conditional
A conditional statement that appears in one of the branches of another conditional statement.
Return Statement
A statement that causes a function to end immediately and return to the caller.
Recursion
The process of calling the function that is currently executing.
Base Case
A conditional branch in a recursive function that does not make a recursive call.
Infinite Recursion
A recursion that does not have a base case, or never reaches it. Eventually, an infinite recursion causes a runtime error.
_ _ main_ _
(page 23)
A special name fr the topmost frame. When you create a variable outside of any function, it belongs to __main__.
Temporary Variable
A variable used to store an intermediate value in a complex calculation.
Dead Code
Part of a program that can never run, often because it appears after a return statement.
e.g. alternative conditionals
Incremental Development
A program development plan intended to avoid debugging by adding and testing only a small amount of code at a time.
Scaffolding
Code that is used during program development but is not part of the final version.
Guardian
A programming pattern that uses a conditional statement to check for and handle circumstances that might cause an error.
Update
An assignment where the new value of the variable depends on the old.
e.g. x = x + 1
which means “ get the value of x, add one, and then update the value of x with the new value”
Reassignment
Assigning a new value to a variable that already exists.
Increment
An update that increases the value of a variable (often by one).
Object
Something a variable can refer to. For now (chapter 8), you can use “object” and “value” interchangeably.
Iteration
Repeated execution of a set of statements using either a recursive function or a loop.
Initialization
As assignment that gives an initial value to a variable that will be updated.
Decrement
An update that decreases the value of a variable.
Infinite Loop
A loop in which the terminating condition is never satisfying.
what is the flow of execution for a while loop?
- Determine whether the condition is true or false.
- If false, exit the while loop and continue execution at the next step.
- If the condition is true, run the body and then go back to step 1.
Algorithm
A general process for solving a category of problems.
Sequence
An ordered collection of values where each value is identified by an integer index. A string is a sequence.
Item
One of the values in a sequence.
Index
An integer value used to select an item in a sequence, such as a character in a string. In Python, indices start at 0.
Slice
A part of a string specified by a range of indices.
Empty String
A string with no characters and length 0, represented by two quotation marks.
Immutable
The property of a sequence whose items cannot be changed.
Traverse
To iterate through the items in a sequence, performing a similar operation on each.
Search
A pattern of traversal that stops when it finds what its looking for.
Counter
A variable used to count something, usually initially at 0 and then incremented.
Invocation
A statement that calls a method.
Optional Argument
A function or method argument that is not required.
what are some examples of string methods?
1) .upper()
2) .find()
File Object
A value that represents an open file.
Reduction to a Previously Solved Problem
A way of solving a problem by expressing it as an instance of a previously solved problem.
Special Case
A test case that is atypical or non-obvious (and less likely to be handled correctly).
List
A sequence of values.
Element
One of the values in a list (or other sequence), also called items.
Nested List
A list that is an element of another list.
Accumulator
A variable used in a loop to add up or accumulate a result.
Augmented Assignment
A statement that updates the value of a variable using an operator like +=.
Reduce
A processing pattern that traverses a sequence and accumulates the elements into a single result.
Map
A processing pattern that traverses a sequence and performs an operation on each element.
Filter
A processing pattern that traverses a list and selects the elements that satisfy some criterion.
Object
Something a variable can refer to. An object has a type and a value.
Equivalent
Having the same value.
Identical
Being the same object (which implies equivalence).
Reference
The association between a variable and its value.
Aliasing
A circumstance where two or more variables refer to the same object.
Delimiter
A character or string used to indicate where a string should be split.
range function
built-in python function. range returns a list of indices from 0 to n-1, where n is the length of the list.
List Operations
The + operator concatenates lists.
The * operator repeats a list a given number of times.
List Methods
append - adds a new element to the end of a list.
extend - takes a list as an argument and appends all the elements.
sort - arranges the elements in a list from low to high.
.sorted() - returns a new sorted list and leaves the original alone
ways to delete elements from strings
1) pop()
2) del
3) remove()
Caller
The caller of a function is the unit of program code in which the call to the function occurred. This can be another function, a method (a specific type of function) or, in Python, the code in the “top level” of a python source code file – generally referred to as a script. (stack overflow)
Floor Division
supported in python.
using // instead of / returns the integer value of a quotient. it drops anything after the decimal.
Definition:
Floor division is a division operation that rounds the result down to the nearest whole number or integer, which is less than or equal to the normal division result. The floor function is mathematically denoted by this ⌊ ⌋ symbol.
mapping (chapter 11)
a relationship in which each element of one set corresponds to an element of another set.
dictionary
a mapping from keys to their corresponding values.
Key-Value pair
the representation of the mapping from a key to a value.
Item
In a dictionary, another name for a key-value pair.
Key
An object that appears in a dictionary as the first part of a key-value pair.
Value (chapter 11)
An object that appears in a dictionary as the second part of a key-value pair. This is more specific than our previous use of the word value.
Implementation
A way of performing a computation.
Hashtable
The algorithm used to implement Python dictionaries.
Hash Function
A function used by a hashtable to compute the location for a key.
Hasable
A type that has a hash function. Immutable types like integers, floats, and strings are hashable; mutable types like lists and dictionaries are not.
Lookup
A dictionary operation that takes a key and finds the corresponding value.
Reverse Lookup
A dictionary operation that takes a value and finds one or more keys that map to it.
Raise Statement
A statement that (deliberately) raises an exception.
Singleton
A list (or other sequence) with a single element.
Call graph
A diagram that shows every frame created during the execution of a program, with an arrow from each caller to each callee.
Memo
A computed value stored to avoid unnecessary future computation.
Global Variable
A variable defined outside a function. Global variables can be accessed from any function.
Global Statement
A statement that declares a variable name global.
Flag
A boolean variable used to indicate whether a condition is true.
Declaration
A statement like “global” that tells the interpreter something about a variable.
get method
Dictionaries have a method called “get” that takes a key and a default value. If the key appears in the dictionary, “get” returns the corresponding value; otherwise it returns the default value.
Tuple
An immutable sequence of elements.
Tuple Assignment
An assignment with a sequence on the right side and a tuple of variables on the left. The right side is evaluated and then its elements are assigned to the variables on the left.
Gather
An operation that collects multiple arguments into a tuple. “*”
Scatter
An operation that makes a sequence behave like multiple arguments.
Zip Object
The result of calling a built-in function “zip”; an object that iterates through a sequence of tuples.
Iterator (chapter 12)
An object that can iterate through a sequence, but which does not provide list operators and methods.
Data Structure
A collection of related values, often organized in lists, dictionaries, tuples, etc.
Shape Error
An error caused because a value has the wrong shape; that is, the wrong type or size.