5.3. Список источников¶
- Официальная документация.
- Function definitions. URL: https://docs.python.org/3/reference/compound_stmts.html#function-definitions.
- parameter. URL: https://docs.python.org/3/glossary.html#term-parameter.
- argument. URL: https://docs.python.org/3/glossary.html#term-argument.
- What is the difference between arguments and parameters?. URL: https://docs.python.org/3/faq/programming.html#faq-argument-vs-parameter.
- How do I write a function with output parameters (call by reference)?. URL: How do I write a function with output parameters (call by reference).
- Python.
- How do I pass a variable by reference?. URL: http://stackoverflow.com/questions/986006/how-do-i-pass-a-variable-by-reference.
- Когда использовать
lambda
? URL: http://stackoverflow.com/questions/25010167/e731-do-not-assign-a-lambda-expression-use-a-def. - Short Description of Python Scoping Rules. URL: http://stackoverflow.com/questions/291978/short-description-of-python-scoping-rules.
- A Beginner’s Guide to Python’s Namespaces, Scope Resolution, and the LEGB Rule. URL: http://sebastianraschka.com/Articles/2014_python_scope_and_namespaces.html.
- Всё, что вы хотели знать о функциях в Python URL: https://compscicenter.ru/media/slides/python_2014_autumn/2014_09_24_python_2014_autumn_1.pdf
- Real-world examples of recursion. URL: http://stackoverflow.com/questions/105838/real-world-examples-of-recursion.
- Прочее.
- Подпрограмма. URL: https://ru.wikipedia.org/wiki/Подпрограмма.
- Функция. URL: https://ru.wikipedia.org/wiki/Функция_(программирование).
- Анонимная функция. URL: https://ru.wikipedia.org/wiki/Анонимная_функция.
- Параметр. URL: https://ru.wikipedia.org/wiki/Параметр_(программирование).
- Стратегия вычисления. URL: https://ru.wikipedia.org/wiki/Стратегия_вычисления.
- Функции первого класса. URL: https://ru.wikipedia.org/wiki/Функции_первого_класса.
- Область видимости. URL: https://ru.wikipedia.org/wiki/Область_видимости.
- Замыкание. URL: https://ru.wikipedia.org/wiki/Замыкание_(программирование).
- Побочный эффект. URL: https://ru.wikipedia.org/wiki/Побочный_эффект_(программирование).