How Python Evolves: The Fascinating Journey of PEPs | Issue #41


Hi there,

You use Python every day, but have you ever wondered how new features make it into the language?

It all starts with a PEP—a Python Enhancement Proposal. Some PEPs go unnoticed, but others, like PEP 484, changed the language forever. It introduced type hints, and let’s just say… not everyone was happy about it.

In this week’s video, I take a deep dive into:

✅ The PEP process—who decides Python’s future?

✅ Why type hints caused such a stir in the community

✅ The fascinating discussions and debates behind Python’s evolution

If you want to understand how Python really works, you don’t want to miss this one!

Cheers,

Arjan

# News

The ArjanCodes Business Portal

This month something big happened, we launched the ArjanCodes Business Portal! A platform designed to make it easier than ever for businesses to manage and purchase our online courses for their teams. 🎉

✨ With the portal, your company will enjoy:

  • Ordering multiple courses in bulk at a discount
  • Seamlessly assigning course seats (no emails required!)
  • Easy invoicing with customizable details
  • Flexible payment options (credit cards, bank transfers & more)
  • REST API for integrating seat assignments into your systems
video preview

Launch Promotion Alert!

To celebrate the launch, we’re offering a 20% discount on all course purchases through the portal until March 10, 2025. ⏰ (Minimum two seats required.)

Don’t miss out, register your business today and start exploring all the benefits!

PyO3 and Rust in Action

Ever wondered how to speed up your Python code without completely ditching Python? The team at Blueshoe wrote a fantastic deep dive into PyO3, a tool that lets you seamlessly integrate Rust with Python. 🚀

If you’re looking to push Python beyond its limits, this is a must-read! Check it out here: Python + Rust with PyO3.

# Community

How much testing is too much testing? That’s what sparked a fascinating discussion on our Discord server when Dale shared The Perfect Dependency – SQLite Case Study. The video dives into SQLite’s extreme engineering, where millions of test cases and 100% branch coverage allow developers to make radical changes safely.

But is SQLite underappreciated? Some argued it’s perfect for most web applications, while others insisted PostgreSQL is the better choice for scaling. And then came the real debate:

💡 “If you’ve chosen the right data structures, the algorithms will be self-evident.” – Rob Pike

Does data organization matter more than code? Join ArjanCodes on Discord and let’s talk! 👉 Jump into the discussion


Do you enjoy my content on YouTube and would you like to dive in deeper? Check out my online courses below. They've helped thousands of developers take the next step in their careers.

🚀 The Mindset Online Course Series

The goal of this series is to help junior developers grow their skills to become senior developers faster.

💥 Other Courses

💡 If you’re part of a development team at a company, I offer special packages for companies that give your team the tools to consistently write high-quality code and dramatically increase your team's productivity.

Unsubscribe | Send by ArjanCodes

Jan van Eijklaan 2-4, Bilthoven, UT 3723 BC

The Friday Loop

Every Friday, you'll get a recap of the most important and exciting Python and coding news. The Friday Loop also keeps everyone posted on new ArjanCodes courses and any limited offers coming up.

Read more from The Friday Loop

Hi there, If your Docker builds are taking forever, your images are probably bloated with unnecessary dependencies. In this week’s video, I break down how to optimize your Dockerfiles step by step. 🐋 I cover better base images, BuildKit, multi-stage builds, and smarter dependency management—all to make your builds faster and leaner. Plus, I ran into a weird Docker issue I still haven’t figured out. Watch today’s video and speed up your builds! 🎥 Cheers, Arjan # News Happy Pi Day! 🐍🥧 Besides...

Hi there, Did you know Python has over 60 built-in functions, and you can use them without importing a single module? This week I explore 12 powerful built-ins that can make your code more efficient and Pythonic. Some of these are absolute game-changers, and yet, I rarely see them used! In this video, you’ll learn how to: ✅ Use filter() and map() for cleaner data processing ✅ Pair iterables like a pro with zip() ✅ Turn any function into an iterator with iter(callable, sentinel) (yes, that’s a...

Hi there, If you’ve ever looked at TypeScript code and thought, “Hey, that kinda looks like Python!”, you’re not wrong. But under the hood, these two languages couldn’t be more different. Python was designed for simplicity and readability. It’s dynamically typed, making development easy but deployment tricky. TypeScript, on the other hand, adds strict static typing to JavaScript, helping with large-scale applications but making setup and debugging more complex. So, which one should you use? 🤔...