46
Learn Functional Python in 10 Minutes

Learn Functional Python in 10 Minutes

5 years ago
Anonymous $oIHRkISgaL

https://hackernoon.com/learn-functional-python-in-10-minutes-to-2d1651dece6f

In this article, you’ll learn what the functional paradigm is as well as how to use functional programming in Python. You’ll also learn about list comprehensions and other forms of comprehensions.

In an imperative paradigm, you get things done by giving the computer a sequence of tasks and then it executes them. While executing them, it can change states. For example, let’s say you originally set A to 5, then later on you change the value of A. You have variables in the sense that the value inside the variable varies.