🏷️ Tag

#python

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

59 Articles
6 Similar tags

Articles with tag "#python"

All materials on the topic python

.env Files and Environment Variables: Keeping Secrets Out of Code
🟑 Medium

.env Files and Environment Variables: Keeping Secrets Out of Code

Imagine you wrote a program with an API key hardcoded in the source and pushed it to GitHub. An hour...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
Python Virtual Environments: Why and How
🟒 Easy

Python Virtual Environments: Why and How

When you start a second Python project and run pip install requests β€” that library gets installed globally, for the...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
argparse: Command-Line Arguments in Python
🟑 Medium

argparse: Command-Line Arguments in Python

When a script grows from a toy into a real tool, input() becomes inconvenient. Professional CLI programs accept arguments at...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
Generators in Python: Lazy Evaluation and Streaming
πŸ”΄ Difficult

Generators in Python: Lazy Evaluation and Streaming

When an API returns a large response β€” text spanning thousands of tokens β€” waiting for the full response is...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
The requests Library: HTTP Requests from Python
🟑 Medium

The requests Library: HTTP Requests from Python

requests is the most downloaded Python library in the world β€” over 300 million downloads per month. It makes HTTP...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
JSON: Persisting Data
🟑 Medium

JSON: Persisting Data

Goal: Learn to save and load data in JSON format.

πŸ‘€ PyLand Team
πŸ“… 03.04.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
List Comprehensions β€” Elegant Lists
🟑 Medium

List Comprehensions β€” Elegant Lists

A list comprehension builds a new list from an iterable with an optional transformation and filtering condition.

πŸ‘€ PyLand Team
πŸ“… 03.04.2026
CSV: Working with Tables
🟑 Medium

CSV: Working with Tables

CSV (Comma-Separated Values) is a text format for storing tabular data. It opens in Excel and Google Sheets and is...

πŸ‘€ PyLand Team
πŸ“… 03.04.2026

Similar tags

Study related topics

🏷️

#django

Related articles django

πŸ“š 68 articles
🏷️

#basics

Related articles basics

πŸ“š 32 articles
🏷️

#ai

Related articles ai

πŸ“š 29 articles
🏷️

#api

Related articles api

πŸ“š 25 articles
🏷️

#llm

Related articles llm

πŸ“š 21 articles
🏷️

#devops

Related articles devops

πŸ“š 13 articles

Looking for more on the topic?

Study all our materials or subscribe to updates