🏷️ Tag

#functions

Explore materials tagged "functions" from expert practitioners. Up-to-date articles and useful tips to help you grow.

9 Articles
3 Similar tags

Articles with tag "#functions"

All materials on the topic functions

How Functions Work Together in Python 🧩
🟒 Easy

How Functions Work Together in Python 🧩

A small function normally handles one clear task. A real program, however, contains several tasks: receive data, process it, display...

πŸ‘€ PyLand Team
πŸ“… 09.08.2026
map() β€” Transform Every Element!
🟑 Medium

map() β€” Transform Every Element!

The map() function lazily applies a transformation to every item in an iterable.

πŸ‘€ PyLand Team
πŸ“… 03.04.2026
filter() β€” Pick What You Need!
🟑 Medium

filter() β€” Pick What You Need!

The filter() function keeps the elements for which a predicate returns a truthy value.

πŸ‘€ PyLand Team
πŸ“… 03.04.2026
Lambda Functions
🟑 Medium

Lambda Functions

A lambda is a small, anonymous, single-line function.

πŸ‘€ PyLand Team
πŸ“… 03.04.2026
reduce() β€” Fold Everything into One!
🟑 Medium

reduce() β€” Fold Everything into One!

The reduce() function combines an iterable into one value by repeatedly applying a two-argument function.

πŸ‘€ PyLand Team
πŸ“… 03.04.2026
Pure Functions
πŸ”΄ Difficult

Pure Functions

A pure function depends only on its arguments, does not modify external state, and returns the same result for the...

πŸ‘€ PyLand Team
πŸ“… 03.04.2026
Function Composition
πŸ”΄ Difficult

Function Composition

Function composition connects small functions so that one function's result becomes the next function's argument.

πŸ‘€ PyLand Team
πŸ“… 03.04.2026
Functions: Best Practices
🟑 Medium

Functions: Best Practices

Goal: Write functions that are easy to read, test, and reuse.

πŸ‘€ PyLand Team
πŸ“… 03.04.2026
Functions in Python
🟒 Easy

Functions in Python

Problem: you wrote a discount calculation β€” needed in 10 places, so you copy it 10 times. You find a...

πŸ‘€ PyLand Team
πŸ“… 30.03.2026

Similar tags

Study related topics

🏷️

#python

Related articles python

πŸ“š 59 articles
🏷️

#basics

Related articles basics

πŸ“š 32 articles
🏷️

#programming

Related articles programming

πŸ“š 4 articles

Looking for more on the topic?

Study all our materials or subscribe to updates