René's URL Explorer Experiment


Title: Functional Programming HOWTO — Python 3.14.6 documentation

Open Graph Title: Functional Programming HOWTO

Description: Author, A. M. Kuchling,, Release, 0.32,. In this document, we’ll take a tour of Python’s features suitable for implementing programs in a functional style. After an introduction to the concepts of ...

Open Graph Description: Author, A. M. Kuchling,, Release, 0.32,. In this document, we’ll take a tour of Python’s features suitable for implementing programs in a functional style. After an introduction to the concepts of ...

Opengraph URL: https://docs.python.org/3/howto/functional.html

direct link

Domain: docs.python.org

og:typewebsite
og:site_namePython documentation
og:image:width1146
og:image:height600
og:imagehttps://docs.python.org/3.14/_images/social_previews/summary_howto_functional_5ac204e8.png
og:image:altAuthor, A. M. Kuchling,, Release, 0.32,. In this document, we’ll take a tour of Python’s features suitable for implementing programs in a functional style. After an introduction to the concepts of ...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Table of Contentshttps://docs.python.org/contents.html
Functional Programming HOWTOhttps://docs.python.org/howto/functional.html
Introductionhttps://docs.python.org/howto/functional.html#introduction
Formal provabilityhttps://docs.python.org/howto/functional.html#formal-provability
Modularityhttps://docs.python.org/howto/functional.html#modularity
Ease of debugging and testinghttps://docs.python.org/howto/functional.html#ease-of-debugging-and-testing
Composabilityhttps://docs.python.org/howto/functional.html#composability
Iteratorshttps://docs.python.org/howto/functional.html#iterators
Data Types That Support Iteratorshttps://docs.python.org/howto/functional.html#data-types-that-support-iterators
Generator expressions and list comprehensionshttps://docs.python.org/howto/functional.html#generator-expressions-and-list-comprehensions
Generatorshttps://docs.python.org/howto/functional.html#generators
Passing values into a generatorhttps://docs.python.org/howto/functional.html#passing-values-into-a-generator
Built-in functionshttps://docs.python.org/howto/functional.html#built-in-functions
The itertools modulehttps://docs.python.org/howto/functional.html#the-itertools-module
Creating new iteratorshttps://docs.python.org/howto/functional.html#creating-new-iterators
Calling functions on elementshttps://docs.python.org/howto/functional.html#calling-functions-on-elements
Selecting elementshttps://docs.python.org/howto/functional.html#selecting-elements
Combinatoric functionshttps://docs.python.org/howto/functional.html#combinatoric-functions
Grouping elementshttps://docs.python.org/howto/functional.html#grouping-elements
The functools modulehttps://docs.python.org/howto/functional.html#the-functools-module
The operator modulehttps://docs.python.org/howto/functional.html#the-operator-module
Small functions and the lambda expressionhttps://docs.python.org/howto/functional.html#small-functions-and-the-lambda-expression
Revision History and Acknowledgementshttps://docs.python.org/howto/functional.html#revision-history-and-acknowledgements
Referenceshttps://docs.python.org/howto/functional.html#references
Generalhttps://docs.python.org/howto/functional.html#general
Python-specifichttps://docs.python.org/howto/functional.html#python-specific
Python documentationhttps://docs.python.org/howto/functional.html#python-documentation
Enum HOWTOhttps://docs.python.org/howto/enum.html
Logging HOWTOhttps://docs.python.org/howto/logging.html
Report a bughttps://docs.python.org/bugs.html
Improve this pagehttps://docs.python.org/improve-page-nojs.html
Show source https://github.com/python/cpython/blob/main/Doc/howto/functional.rst?plain=1
indexhttps://docs.python.org/genindex.html
moduleshttps://docs.python.org/py-modindex.html
nexthttps://docs.python.org/howto/logging.html
previoushttps://docs.python.org/howto/enum.html
Pythonhttps://www.python.org/
3.14.6 Documentationhttps://docs.python.org/index.html
Python HOWTOshttps://docs.python.org/howto/index.html
Functional Programming HOWTOhttps://docs.python.org/howto/functional.html
https://docs.python.org/howto/functional.html#functional-programming-howto
iteratorhttps://docs.python.org/glossary.html#term-iterator
generatorhttps://docs.python.org/glossary.html#term-generator
itertoolshttps://docs.python.org/library/itertools.html#module-itertools
functoolshttps://docs.python.org/library/functools.html#module-functools
https://docs.python.org/howto/functional.html#introduction
Iteratorshttps://docs.python.org/howto/functional.html#functional-howto-iterators
print()https://docs.python.org/library/functions.html#print
time.sleep()https://docs.python.org/library/time.html#time.sleep
https://docs.python.org/howto/functional.html#formal-provability
https://docs.python.org/howto/functional.html#modularity
https://docs.python.org/howto/functional.html#ease-of-debugging-and-testing
https://docs.python.org/howto/functional.html#composability
https://docs.python.org/howto/functional.html#iterators
__next__()https://docs.python.org/library/stdtypes.html#iterator.__next__
StopIterationhttps://docs.python.org/library/exceptions.html#StopIteration
iter()https://docs.python.org/library/functions.html#iter
TypeErrorhttps://docs.python.org/library/exceptions.html#TypeError
iterablehttps://docs.python.org/glossary.html#term-iterable
forhttps://docs.python.org/reference/compound_stmts.html#for
iter()https://docs.python.org/library/functions.html#iter
list()https://docs.python.org/library/stdtypes.html#list
tuple()https://docs.python.org/library/stdtypes.html#tuple
max()https://docs.python.org/library/functions.html#max
min()https://docs.python.org/library/functions.html#min
__next__()https://docs.python.org/library/stdtypes.html#iterator.__next__
https://docs.python.org/howto/functional.html#data-types-that-support-iterators
iter()https://docs.python.org/library/functions.html#iter
iter()https://docs.python.org/library/functions.html#iter
values()https://docs.python.org/library/stdtypes.html#dict.values
items()https://docs.python.org/library/stdtypes.html#dict.items
dict()https://docs.python.org/library/stdtypes.html#dict
readline()https://docs.python.org/library/io.html#io.TextIOBase.readline
https://docs.python.org/howto/functional.html#generator-expressions-and-list-comprehensions
https://www.haskell.org/https://www.haskell.org/
https://docs.python.org/howto/functional.html#generators
yieldhttps://docs.python.org/reference/simple_stmts.html#yield
bytecodehttps://docs.python.org/glossary.html#term-bytecode
__next__()https://docs.python.org/reference/expressions.html#generator.__next__
__next__()https://docs.python.org/reference/expressions.html#generator.__next__
__next__()https://docs.python.org/library/stdtypes.html#iterator.__next__
Lib/test/test_generators.pyhttps://github.com/python/cpython/tree/3.14/Lib/test/test_generators.py
https://docs.python.org/howto/functional.html#passing-values-into-a-generator
yieldhttps://docs.python.org/reference/simple_stmts.html#yield
PEP 342https://peps.python.org/pep-0342/
send(value)https://docs.python.org/reference/expressions.html#generator.send
__next__()https://docs.python.org/reference/expressions.html#generator.__next__
send()https://docs.python.org/reference/expressions.html#generator.send
send()https://docs.python.org/reference/expressions.html#generator.send
throw(value)https://docs.python.org/reference/expressions.html#generator.throw
close()https://docs.python.org/reference/expressions.html#generator.close
GeneratorExithttps://docs.python.org/library/exceptions.html#GeneratorExit
StopIterationhttps://docs.python.org/library/exceptions.html#StopIteration
RuntimeErrorhttps://docs.python.org/library/exceptions.html#RuntimeError
GeneratorExithttps://docs.python.org/library/exceptions.html#GeneratorExit
https://docs.python.org/howto/functional.html#built-in-functions
map()https://docs.python.org/library/functions.html#map
filter()https://docs.python.org/library/functions.html#filter
map(f, iterA, iterB, ...)https://docs.python.org/library/functions.html#map
filter(predicate, iter)https://docs.python.org/library/functions.html#filter
enumerate(iter, start=0)https://docs.python.org/library/functions.html#enumerate
enumerate()https://docs.python.org/library/functions.html#enumerate
sorted(iterable, key=None, reverse=False)https://docs.python.org/library/functions.html#sorted
sort()https://docs.python.org/library/stdtypes.html#list.sort
Sorting Techniqueshttps://docs.python.org/howto/sorting.html#sortinghowto
any(iter)https://docs.python.org/library/functions.html#any
all(iter)https://docs.python.org/library/functions.html#all
zip(iterA, iterB, ...)https://docs.python.org/library/functions.html#zip
lazy evaluationhttps://en.wikipedia.org/wiki/Lazy_evaluation
https://docs.python.org/howto/functional.html#the-itertools-module
itertoolshttps://docs.python.org/library/itertools.html#module-itertools
https://docs.python.org/howto/functional.html#creating-new-iterators
itertools.count(start, step)https://docs.python.org/library/itertools.html#itertools.count
itertools.cycle(iter)https://docs.python.org/library/itertools.html#itertools.cycle
itertools.repeat(elem, [n])https://docs.python.org/library/itertools.html#itertools.repeat
itertools.chain(iterA, iterB, ...)https://docs.python.org/library/itertools.html#itertools.chain
itertools.islice(iter, [start], stop, [step])https://docs.python.org/library/itertools.html#itertools.islice
itertools.tee(iter, [n])https://docs.python.org/library/itertools.html#itertools.tee
https://docs.python.org/howto/functional.html#calling-functions-on-elements
operatorhttps://docs.python.org/library/operator.html#module-operator
operator.add(a, b)https://docs.python.org/library/operator.html#operator.add
operator.ne(a, b)https://docs.python.org/library/operator.html#operator.ne
operator.attrgetter('id')https://docs.python.org/library/operator.html#operator.attrgetter
itertools.starmap(func, iter)https://docs.python.org/library/itertools.html#itertools.starmap
https://docs.python.org/howto/functional.html#selecting-elements
itertools.filterfalse(predicate, iter)https://docs.python.org/library/itertools.html#itertools.filterfalse
filter()https://docs.python.org/library/functions.html#filter
itertools.takewhile(predicate, iter)https://docs.python.org/library/itertools.html#itertools.takewhile
itertools.dropwhile(predicate, iter)https://docs.python.org/library/itertools.html#itertools.dropwhile
itertools.compress(data, selectors)https://docs.python.org/library/itertools.html#itertools.compress
https://docs.python.org/howto/functional.html#combinatoric-functions
itertools.combinations(iterable, r)https://docs.python.org/library/itertools.html#itertools.combinations
itertools.permutations(iterable, r=None)https://docs.python.org/library/itertools.html#itertools.permutations
itertools.combinations_with_replacement(iterable, r)https://docs.python.org/library/itertools.html#itertools.combinations_with_replacement
https://docs.python.org/howto/functional.html#grouping-elements
itertools.groupby(iter, key_func=None)https://docs.python.org/library/itertools.html#itertools.groupby
groupby()https://docs.python.org/library/itertools.html#itertools.groupby
groupby()https://docs.python.org/library/itertools.html#itertools.groupby
https://docs.python.org/howto/functional.html#the-functools-module
functoolshttps://docs.python.org/library/functools.html#module-functools
functools.partial()https://docs.python.org/library/functools.html#functools.partial
partial()https://docs.python.org/library/functools.html#functools.partial
functools.reduce(func, iter, [initial_value])https://docs.python.org/library/functools.html#functools.reduce
TypeErrorhttps://docs.python.org/library/exceptions.html#TypeError
operator.add()https://docs.python.org/library/operator.html#operator.add
functools.reduce()https://docs.python.org/library/functools.html#functools.reduce
sum()https://docs.python.org/library/functions.html#sum
functools.reduce()https://docs.python.org/library/functools.html#functools.reduce
forhttps://docs.python.org/reference/compound_stmts.html#for
itertools.accumulate(iterable, func=operator.add)https://docs.python.org/library/itertools.html#itertools.accumulate
https://docs.python.org/howto/functional.html#the-operator-module
operatorhttps://docs.python.org/library/operator.html#module-operator
https://docs.python.org/howto/functional.html#small-functions-and-the-lambda-expression
lambdahttps://docs.python.org/reference/expressions.html#lambda
sum()https://docs.python.org/library/functions.html#sum
functools.reduce()https://docs.python.org/library/functools.html#functools.reduce
https://docs.python.org/howto/functional.html#revision-history-and-acknowledgements
https://docs.python.org/howto/functional.html#references
https://docs.python.org/howto/functional.html#general
https://mitpress.mit.edu/sicphttps://mitpress.mit.edu/sicp
https://defmacro.org/2006/06/19/fp.htmlhttps://defmacro.org/2006/06/19/fp.html
https://en.wikipedia.org/wiki/Functional_programminghttps://en.wikipedia.org/wiki/Functional_programming
https://en.wikipedia.org/wiki/Coroutinehttps://en.wikipedia.org/wiki/Coroutine
https://en.wikipedia.org/wiki/Partial_applicationhttps://en.wikipedia.org/wiki/Partial_application
https://en.wikipedia.org/wiki/Curryinghttps://en.wikipedia.org/wiki/Currying
https://docs.python.org/howto/functional.html#python-specific
https://gnosis.cx/TPiP/https://gnosis.cx/TPiP/
part 1https://developer.ibm.com/articles/l-prog/
part 2https://developer.ibm.com/tutorials/l-prog2/
part 3https://developer.ibm.com/tutorials/l-prog3/
https://docs.python.org/howto/functional.html#python-documentation
itertoolshttps://docs.python.org/library/itertools.html#module-itertools
functoolshttps://docs.python.org/library/functools.html#module-functools
operatorhttps://docs.python.org/library/operator.html#module-operator
PEP 289https://peps.python.org/pep-0289/
PEP 342https://peps.python.org/pep-0342/
Table of Contentshttps://docs.python.org/contents.html
Functional Programming HOWTOhttps://docs.python.org/howto/functional.html
Introductionhttps://docs.python.org/howto/functional.html#introduction
Formal provabilityhttps://docs.python.org/howto/functional.html#formal-provability
Modularityhttps://docs.python.org/howto/functional.html#modularity
Ease of debugging and testinghttps://docs.python.org/howto/functional.html#ease-of-debugging-and-testing
Composabilityhttps://docs.python.org/howto/functional.html#composability
Iteratorshttps://docs.python.org/howto/functional.html#iterators
Data Types That Support Iteratorshttps://docs.python.org/howto/functional.html#data-types-that-support-iterators
Generator expressions and list comprehensionshttps://docs.python.org/howto/functional.html#generator-expressions-and-list-comprehensions
Generatorshttps://docs.python.org/howto/functional.html#generators
Passing values into a generatorhttps://docs.python.org/howto/functional.html#passing-values-into-a-generator
Built-in functionshttps://docs.python.org/howto/functional.html#built-in-functions
The itertools modulehttps://docs.python.org/howto/functional.html#the-itertools-module
Creating new iteratorshttps://docs.python.org/howto/functional.html#creating-new-iterators
Calling functions on elementshttps://docs.python.org/howto/functional.html#calling-functions-on-elements
Selecting elementshttps://docs.python.org/howto/functional.html#selecting-elements
Combinatoric functionshttps://docs.python.org/howto/functional.html#combinatoric-functions
Grouping elementshttps://docs.python.org/howto/functional.html#grouping-elements
The functools modulehttps://docs.python.org/howto/functional.html#the-functools-module
The operator modulehttps://docs.python.org/howto/functional.html#the-operator-module
Small functions and the lambda expressionhttps://docs.python.org/howto/functional.html#small-functions-and-the-lambda-expression
Revision History and Acknowledgementshttps://docs.python.org/howto/functional.html#revision-history-and-acknowledgements
Referenceshttps://docs.python.org/howto/functional.html#references
Generalhttps://docs.python.org/howto/functional.html#general
Python-specifichttps://docs.python.org/howto/functional.html#python-specific
Python documentationhttps://docs.python.org/howto/functional.html#python-documentation
Enum HOWTOhttps://docs.python.org/howto/enum.html
Logging HOWTOhttps://docs.python.org/howto/logging.html
Report a bughttps://docs.python.org/bugs.html
Improve this pagehttps://docs.python.org/improve-page-nojs.html
Show source https://github.com/python/cpython/blob/main/Doc/howto/functional.rst?plain=1
indexhttps://docs.python.org/genindex.html
moduleshttps://docs.python.org/py-modindex.html
nexthttps://docs.python.org/howto/logging.html
previoushttps://docs.python.org/howto/enum.html
Pythonhttps://www.python.org/
3.14.6 Documentationhttps://docs.python.org/index.html
Python HOWTOshttps://docs.python.org/howto/index.html
Functional Programming HOWTOhttps://docs.python.org/howto/functional.html
Copyrighthttps://docs.python.org/copyright.html
History and Licensehttps://docs.python.org/license.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.