![]() |
Python
1.0
|
A Pascal triangle generator using yield. More...
Functions | |
def | pascal (nlines, line=[1]) |
A Pascal Triangle generator. More... | |
def | main () |
A Pascal triangle generator using yield.
def _03d_pascal_zip.main | ( | ) |
References pascal().
def _03d_pascal_zip.pascal | ( | nlines, | |
line = [1] |
|||
) |
A Pascal Triangle generator.
nlines | number of rows to be returned. |
line | list with the current row. |
map(function, iterable, ...)
Apply function to every item of iterable and return a list of the results. If additional iterable arguments are passed, function must take that many arguments and is applied to the items from all iterables in parallel.
If one iterable is shorter than another it is assumed to be extended with None items.
If function is None, the identity function is assumed; if there are multiple arguments, map() returns a list consisting of tuples containing the corresponding items from all iterables (a kind of transpose operation).
The iterable arguments may be a sequence or any iterable object; the result is always a list.
Referenced by main().