SlideShare a Scribd company logo
Functional
Programming with
Python
Marcelo Cure
Functional Programming
Expressions over statements (instead of using a whole for, use
map/filter/reduce)
No side effect
Immutability
Simpler code
Expressiveness
Functional is stateless
Statefull Stateless
Don't iterate over lists
Use map/filter/reduce
A even better way
Another example with map
Another example with reduce
Lambdas
High Order Functions
Functions that manipulate functions
Send functions to functions allowing different behaviour
Functional programming with python
Function Composition
List Comprehentions
Comes from mathematics
{ x2 | x ∈ ℕ }
x * 2 given x is contained on the natural numbers
Immutability
● The same happens to other types: string, float, tuples, etc
● Lists and Dictionaries are mutable
● Objects are also mutable
Thanks

More Related Content

DOCX
Relational Algebra Operations
PPTX
Query Optimization
ODP
Functional Programming for the Rest of Us in Javascript
PDF
Query trees
PPT
PPT
14. Query Optimization in DBMS
PPTX
Power shell basics day 5
PPTX
Hashing
Relational Algebra Operations
Query Optimization
Functional Programming for the Rest of Us in Javascript
Query trees
14. Query Optimization in DBMS
Power shell basics day 5
Hashing

What's hot (6)

PPTX
Join operation
PPTX
Hashing and Hashtable, application of hashing, advantages of hashing, disadva...
PPTX
Functional programming
PDF
Papers We Love Kyiv, July 2018: A Conflict-Free Replicated JSON Datatype
PPT
13. Query Processing in DBMS
PPTX
CS 542 -- Query Optimization
Join operation
Hashing and Hashtable, application of hashing, advantages of hashing, disadva...
Functional programming
Papers We Love Kyiv, July 2018: A Conflict-Free Replicated JSON Datatype
13. Query Processing in DBMS
CS 542 -- Query Optimization
Ad

Viewers also liked (20)

PPTX
CITY OF SPIES BY SORAYYA KHAN
PDF
ICCV2009: MAP Inference in Discrete Models: Part 5
PDF
What is Network Security?
PDF
Android Application: Introduction
PDF
Functional style programming
PPTX
Carrick - Introduction to Physics & Electronics - Spring Review 2012
PPTX
Serial Killers Presentation1
PPT
Intoduction to Network Security NS1
PPT
Securing Windows web servers
PPTX
Trends in spies
PPT
PPTX
Intelligence, spies & espionage
PPTX
Noah Z - Spies
PPT
PDF
Scalable Internet Servers and Load Balancing
PDF
Android UI
PPTX
Lecture#01
PDF
Functional Programming in R
PDF
Uni cambridge
 
CITY OF SPIES BY SORAYYA KHAN
ICCV2009: MAP Inference in Discrete Models: Part 5
What is Network Security?
Android Application: Introduction
Functional style programming
Carrick - Introduction to Physics & Electronics - Spring Review 2012
Serial Killers Presentation1
Intoduction to Network Security NS1
Securing Windows web servers
Trends in spies
Intelligence, spies & espionage
Noah Z - Spies
Scalable Internet Servers and Load Balancing
Android UI
Lecture#01
Functional Programming in R
Uni cambridge
 
Ad

More from Marcelo Cure (16)

PPTX
Api design
PPTX
Zero mq
PPTX
Dev ops engineering and chatbots
PPTX
Versioning APIs
PPTX
Building restful ap is with harvester js
PPTX
Cqrs, event sourcing and microservices
PPTX
Immutability and immutable js
PPTX
Polymer
PPTX
Hexagonal Architecture
PPTX
What's the value of the metrics
PPTX
PPTX
SciPy - Scientific Computing Tool
PPTX
Test driven development
PPTX
Usability testing
PPTX
Corona
PPTX
Apache lucene - full text search
Api design
Zero mq
Dev ops engineering and chatbots
Versioning APIs
Building restful ap is with harvester js
Cqrs, event sourcing and microservices
Immutability and immutable js
Polymer
Hexagonal Architecture
What's the value of the metrics
SciPy - Scientific Computing Tool
Test driven development
Usability testing
Corona
Apache lucene - full text search

Recently uploaded (20)

PDF
Softaken Excel to vCard Converter Software.pdf
PDF
Digital Strategies for Manufacturing Companies
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
System and Network Administraation Chapter 3
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
ai tools demonstartion for schools and inter college
PDF
System and Network Administration Chapter 2
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Transform Your Business with a Software ERP System
Softaken Excel to vCard Converter Software.pdf
Digital Strategies for Manufacturing Companies
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
System and Network Administraation Chapter 3
Understanding Forklifts - TECH EHS Solution
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
How to Choose the Right IT Partner for Your Business in Malaysia
Which alternative to Crystal Reports is best for small or large businesses.pdf
ai tools demonstartion for schools and inter college
System and Network Administration Chapter 2
CHAPTER 2 - PM Management and IT Context
PTS Company Brochure 2025 (1).pdf.......
Odoo Companies in India – Driving Business Transformation.pdf
Wondershare Filmora 15 Crack With Activation Key [2025
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Reimagine Home Health with the Power of Agentic AI​
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
Navsoft: AI-Powered Business Solutions & Custom Software Development
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Transform Your Business with a Software ERP System

Functional programming with python