The New Python 3.13 Is FINALLY Here! | Issue #22


Hi there,

Python 3.13 is officially here, packed with some seriously exciting upgrades! 🐍

The headline feature? Disabling the GIL (yep, you read that right) is a game changer for multithreaded applications. Plus, the interactive interpreter now has full color support 🎨, making debugging and experimentation even more intuitive.

But that’s just the tip of the iceberg. In this week’s video, I’ll walk you through all the major updates, including:

  • A boost to garbage collection for faster memory management ⚡
  • Improvements to package and module handling 📦
  • Some experimental (but very promising) JIT optimizations for performance 🚀

P.S. And yes, Python 3.14 is just around the corner… should we start calling it Pi-thon? 🍰

Enjoy the video and happy coding!

Cheers,

Arjan

# News

It’s Time to Stop Using Python 3.8

With the release of Python 3.13, it’s the perfect time to consider upgrading—especially if you haven’t been keeping up with recent versions.

If you’re still using Python 3.8, you could be missing out on essential improvements in performance, security, and new features. This article dives into the key reasons to move on from 3.8, outlining the risks of staying on an outdated version and the benefits of upgrading. Read the full article here.

Goodhart's Law in Software Engineering

Ever heard of Goodhart’s Law? It’s more relevant to software engineering than you think! 🤔

Goodhart’s Law states, “When a measure becomes a target, it ceases to be a good measure.” This insightful article explores how this principle plays out in software engineering, from productivity metrics to code quality—and why focusing too much on the wrong targets can lead to unintended consequences. Curious to learn more? Read the full article here.

# Community

Last month, we welcomed 242 new members to the Discord community! I couldn’t be more thrilled to have you all here. A huge thank you to everyone for your amazing contributions to the discussions so far.

If you’re new, don’t forget to pop into the #😎introduce_yourself channel and say hi! 👋 And if you haven’t joined yet, there’s no better time. Click the link below and be part of our growing community:👉 Join ArjanCodes on Discord


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.

🪄 Learntail

My team and I created an AI quiz generator designed to accelerate your learning, called Learntail. You can try it for free or unlock even more capabilities and features with the monthly subscription. Take a look here.

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, 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? 🤔...

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...