What is functional programming in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is functional programming in python

is functional programing where you use a bunch of functions to make your program work and stay organized

1st Oct 2017, 3:25 PM
vortetty
vortetty - avatar
2 Answers
+ 1
Python is not a functional programming language, but it is built to be a multi paradigm language. Functional programming is about to use inmmutable data structure and functions to develop programs, so you take functions whose arguments are functions too. More than use iterators like for o while, most of the time propose recursion to reach the same objective. I recommend this free paper to understand the functional programming applied in Python. http://www.oreilly.com/programming/free/functional-programming-python.csp
1st Oct 2017, 4:53 PM
Vitoko
Vitoko - avatar
0
oh ok thankyou
1st Oct 2017, 6:02 PM
vortetty
vortetty - avatar