#python
Study materials by tag "python" from expert practitioners. Current articles and useful tips for development.
Articles with tag "#python"
All materials on the topic python
Setting Up Your Environment: Python, pip, and VS Code
Before writing code locally, you need to set up three tools: Python, pip, and VS Code. This takes 10โ15 minutes...
The datetime Module: Working with Dates and Times
datetime is Python's standard module for working with dates and times. It's part of the standard library โ no installation...
.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...
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...
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...
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...
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...
Common Python Beginner Mistakes: How to Avoid Them ๐จ
Every Python developer makes the same mistakes at the start. The good news โ knowing them in advance will save...
JSON: Persisting Data Like a Real Game ๐พ
Goal: Learn to save and load data in JSON format.
map() โ Transform Everything at Once! ๐
map() applies a function to every element of an iterable and returns the results.
filter() โ Pick the Best! ๐
filter() selects elements that pass a test (return True).
Lambda Functions: Tiny Smart Functions โก
A lambda is a way to create a small, single-line, anonymous function.
Similar tags
Study related topics
Looking for more on the topic?
Study all our materials or subscribe to updates