У нас вы можете посмотреть бесплатно Functional Python in 100 seconds или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Python supports functional programming such as functions as first-class objects. Functions are considered to be objects with arguments and return values. This is in contrast to most other programming languages where functions are treated as "code blocks" or "procedures". Most programming languages are procedural: programs are lists of instructions that tell the computer what to do with the program's input. Functional programming simplifies problems into individual functions. Ideally, functions are pure, which means they don’t have any state that affects the output. Functions can also be impure, which means they do retain state. Some programming languages are multi-paradigm, which allow you to write either procedural, object-oriented, or functional code depending on the problem. Python is one of these languages. CHAPTERS 0:00 Definitions 0:25 Procedural function 0:44 Generator / pure function 1:02 Higher-order function