Python Flashcards
What are the two modes you can run Python on?
Standard and interactive mode.
What environments does Anaconda uses?
Jupyter and Spyder
What are the three charactestic of each object in Python:
1) Type: determines the operations it can support
2) Value
3) Identity: an identity number for the object.
Each object has attributes (separated by dot, data attribute (value) or methods (functions)).
What is an instance?
An occurrence of an object
x.shape: (a data attribute)
Give you the amount of elements in an array.
How do you distinguish from data attribute and method?
Method is followed by parentheses x.mean()
What happens when you run the import statement
1) Create a new namespace for all the objects in the module
2) Execute the code of the module and run it in the new namespace
3) Creates a name for referencing the new namespace.
dir(str):
Give the list of methods for the object in question
True or False
True
True and False
False
What is a sequence in python?
A collection of objects in order (list, tuple, range)
Why are list methods “In place” methods?
They modify the original list, they do not return a new list.
What is polymorphism in python?
The operator ouput depends on the type of object it is applied to (think addition between string vs addition between numbers, a plus sign between string means concatenation).
What is the span of a pair of vector?
It is the set of all their linear combinations.
What does it mean that two or three vectors are linearlydependent?
One of them is redudant, you could remove one of them without reducing the span of the vectors (in other word they are sitting on the same line or on the same plane in 3D)
What are the two properties of a linear transformation?
All lines must remain lines and the origin must remain fixed in space. It maintains grid lines parallel and evenly spaced.
What are the two kinds of copies?
1) Shallow
2) Deep (also create the copy of the objects and references to the objects)
List the statements:
Return
Import
Pass
What are compounds statement?
Contains other statements and control their execution, span multiple lines. They consist of one or more clauses and a block (or suited) indented code that fall under the header.
What is a unit vector?
It is a vector with all elements equal to zero, except one element which is equal to one.
What is a sparse vector?
A vector is said to be sparse if many of its entries are zero; its sparsity pattern is the set of indices of nonzero entries
What is the sum of two vectors?
Two vectors of the same size can be added together by adding the corresponding
elements, to form another vector of the same size, called the sum of the vectors.
Vector addition is denoted by the symbol +.
What are universal function in numpy?
A universal function, or ufunc, is a function that performs element-wise operations on data in ndarrays. You can think of them as fast vectorized wrappers for simple functions that take one or more scalar values and produce one or more scalar results.
Many ufuncs are simple element-wise transformations, like numpy.sqrt or numpy.exp.
These are referred to as unary ufuncs. Others, such as numpy.add or numpy.maximum, take two arrays (thus, binary ufuncs) and return a single array as the result.
What is vectorization?
This practice of replacing explicit loops with array expressions is referred to by some people as vectorization.