What good homework lessons are recommended for learning functional programming in Python?

I recommended a friend to learn some functional programming with Python in order to expand his knowledge and overcome the fatigue of programmers.

I chose Python because it has a good chance that it will be able to use new knowledge in daily everyday work.

I tried to find him a few lessons and found a lot of manuals - I was deeply immersed in how to use map , reduce , filter , etc., but does not provide exercises where he can learn while coding.

Where can I find a tutorial that uses functional python to solve problems during training?

The best answer for me would be homework on a functional programming course that should be written in Python. Such a thing is probably rare because an academic course usually prefers a cleaner functional language for such work.

+7
source share
3 answers

I was informed about this site when I started studying. This is a set of puzzles that you need to solve using Python. It can be fun.

http://www.pythonchallenge.com/

+1
source

This is not a literal answer to your question, but I would recommend your friend practice in Javascript instead of python. With python, you can do some functional programming, but most projects do not need to do much, if any. Javascript really requires doing this, and at least as a common / useful language these days. In javascript, you will find much more useful tutorial material than python.

0
source

All Articles