CS1101 All Index


Name definition reference
accumlatorA variable used in a loop to add up or accumulate a result.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
aliasingA circumstance where two or more variables refer to the same object.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
augmented assingmentA statement that updates the value of a variable using an operator like +=.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
dead code part of the program that can never run, often because it appears after a return statementDowney, A. (2015). Think Python, How to think like a computer scientist. page 60
delimiterA character or string used to indicate where a string should be split.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
elementOne of the values in a list (or other sequence), also called items.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
equivalentHaving the same value.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
filterA processing pattern that traverses a list and selects the elements that satisfy some criterion.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
guardianprogramming pattern that uses a conditional statement to check for and handle circumstances that might cause an errorDowney, A. (2015). Think Python, How to think like a computer scientist. page 60
identicalBeing the same object (which implies equivalence).Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
listA sequence of values.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
listA sequence of values.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
mapA processing pattern that traverses a sequence and performs an operation on each element.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
mutable structureThe elements of the structure can change. CS1101 University of the People. chapter 6.
nested listA list that is an element of another list.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
objectSomething a variable can refer to. An object has a type and a value.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
reduceA processing pattern that traverses a sequence and accumulates the elements into a single result.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100
referenceThe association between a variable and its value.Downey, A. (2015). Think Python, How to think like a computer scientist. page 100