Returns the number of items an object contains.
What is len()?
What is the REPL?
This analysis approach is used to decompose problems into solvable pieces.
What is functional decomposition?
Operator that can test equality of two objects.
What is ==?
Has 'self' as first parameter.
What is a method?
An immutable type used to create a sequence of numbers.
What is range()?
This is the name given to a module directly executed by the Python interpreter.
What is '__main__'?
This process yields an isomorphic mapping between entities in the real world and entities in software.
What is object-oriented analysis and design?
This operation can extract a substring from a string.
What is a slice?
What is '__init__'?
Returns a string containing a printable representation of an object.
What is repr()?
This is the fundamental unit of code reuse in a Python program.
What is a function?
A derived class has this type of relationship to its base class?
What is an 'is-a' relationship?
This operator is shorthand for 'var = var + val'
What is the += operator?
Used to indicate an object's attribute or method should not be directly accessed.
What is a leading underscore?
Returns a new ordered list given an iterable object.
What is sorted()?
This data structure is also known as an associative array?
What is a dictionary?
These types of letters are used to indicate a constant.
What are capital letters?
Values in this data structure can be accessed via integer offsets.
What is a list?
These are used to create doc comments in code.
What is """ """?
Used to obtain a file object for reading, writing, or appending.
What is open()?
This method is used to add a value to a list.
What is the append() method?
What is a function that returns a value?
This keyword is used to automatically clean up resources after file I/O operations.
What is 'with'?
This represents a null value.
What is None?