Real Python: Quiz: Python Namespace Packages
Link: https://realpython.com/quizzes/python-namespace-package/
In this quiz, you’ll practice your knowledge about Python’s namespace packages.
What are they used for? How do you set up a namespace package? How could you create one before PEP 420? Complete this qu
Link: https://realpython.com/quizzes/python-namespace-package/
In this quiz, you’ll practice your knowledge about Python’s namespace packages.
What are they used for? How do you set up a namespace package? How could you create one before PEP 420? Complete this qu
Realpython
Python Namespace Packages Quiz – Real Python
Practice your knowledge about namespace packages in Python. Revisit managing multiple packages without an __init__.py file.
Real Python: Quiz: Using the "or" Boolean Operator in Python
Link: https://realpython.com/quizzes/python-or-operator/
In this quiz, you’ll test your understanding of the Python or Operator.
You’ll learn how to use it in both Boolean and non-Boolean contexts,
and understand how it can be used to solve programming prob
Link: https://realpython.com/quizzes/python-or-operator/
In this quiz, you’ll test your understanding of the Python or Operator.
You’ll learn how to use it in both Boolean and non-Boolean contexts,
and understand how it can be used to solve programming prob
Realpython
Using the "or" Boolean Operator in Python Quiz – Real Python
Practice using the python or operator to evaluate conditions, set default values, and simplify branching. Take the quick quiz to learn.
Real Python: Quiz: Working With Python's Built-in Exceptions
Link: https://realpython.com/quizzes/working-builtin-exceptions/
In this quiz, you’ll revisit Python’s built-in exceptions, exploring their hierarchy and how to handle them gracefully. You’ll practice distinguishing between errors and exceptions, using try...except
Link: https://realpython.com/quizzes/working-builtin-exceptions/
In this quiz, you’ll revisit Python’s built-in exceptions, exploring their hierarchy and how to handle them gracefully. You’ll practice distinguishing between errors and exceptions, using try...except
Realpython
Working With Python's Built-in Exceptions Quiz – Real Python
Test your knowledge of Python's built-in exceptions by answering interactive questions. Learn effective error handling techniques.
Real Python: Quiz: Skip Ahead in Loops With Python's Continue Keyword
Link: https://realpython.com/quizzes/python-continue/
In this quiz, you’ll test your understanding of
Python’s continue statement.
The continue statement allows you to skip code in a loop for the current iteration,
jumping immediately to the next iterati
Link: https://realpython.com/quizzes/python-continue/
In this quiz, you’ll test your understanding of
Python’s continue statement.
The continue statement allows you to skip code in a loop for the current iteration,
jumping immediately to the next iterati
Realpython
Skip Ahead in Loops With Python's Continue Keyword Quiz – Real Python
Test your understanding of Python's continue keyword, which allows you to skip code in a loop for the current iteration and jump immediately to the next one.
Stéphane Wirtel: Relancer l’écriture de mon livre *Introduction à Python 3.13*
Link: https://wirtel.be/post/2025/08/04/relancer-l%C3%A9criture-de-mon-livre-introduction-%C3%A0-python-3.13/
✍️ Écrire (et réécrire) mon livre Introduction à Python 3.13
Quand j’ai commencé mon parcours en tant qu’indépendant, mon objectif était limpide : donner des formations sur Python. Expliquer comment l
Link: https://wirtel.be/post/2025/08/04/relancer-l%C3%A9criture-de-mon-livre-introduction-%C3%A0-python-3.13/
✍️ Écrire (et réécrire) mon livre Introduction à Python 3.13
Quand j’ai commencé mon parcours en tant qu’indépendant, mon objectif était limpide : donner des formations sur Python. Expliquer comment l
wirtel.be
Relancer l’écriture de mon livre *Introduction à Python 3.13*
Relancer l’écriture de mon livre _Introduction à Python 3.13_ en m’appuyant sur Obsidian, Pandoc, Typst et une chaîne d’outils moderne et fluide.
Real Python: Quiz: Introduction to Web Scraping With Python
Link: https://realpython.com/quizzes/introduction-to-web-scraping-with-python/
In this quiz, you’ll practice core concepts from Introduction to Web Scraping With Python. You’ll revisit what web scraping is, when to use Beautiful Soup, and how to install and configure your enviro
Link: https://realpython.com/quizzes/introduction-to-web-scraping-with-python/
In this quiz, you’ll practice core concepts from Introduction to Web Scraping With Python. You’ll revisit what web scraping is, when to use Beautiful Soup, and how to install and configure your enviro
Realpython
Introduction to Web Scraping With Python Quiz – Real Python
Practice the basics of web scraping in Python using Beautiful Soup and MechanicalSoup, including setup, parsing, and automation tools.
Real Python: Quiz: Intro to Object-Oriented Programming (OOP) in Python
Link: https://realpython.com/quizzes/intro-object-oriented-programming-oop-python/
In this quiz, you’ll revisit the fundamentals of object-oriented programming (OOP) in Python and how to work with classes, objects, and constructors.
[ Improve Your Python With 🐍 Python Tricks 💌 – Ge
Link: https://realpython.com/quizzes/intro-object-oriented-programming-oop-python/
In this quiz, you’ll revisit the fundamentals of object-oriented programming (OOP) in Python and how to work with classes, objects, and constructors.
[ Improve Your Python With 🐍 Python Tricks 💌 – Ge
Realpython
Intro to Object-Oriented Programming (OOP) in Python Quiz – Real Python
Test your knowledge of object-oriented programming (OOP) in Python and how to work with classes, objects, and constructors. Initialize... Go!
Real Python: Quiz: Build a Scalable Flask Web Project From Scratch
Link: https://realpython.com/quizzes/flask-project/
Are you ready to revisit the essentials of building Flask applications? In this quiz, you’ll practice Flask concepts such as views, blueprints, application factory patterns, and template usage.
Check
Link: https://realpython.com/quizzes/flask-project/
Are you ready to revisit the essentials of building Flask applications? In this quiz, you’ll practice Flask concepts such as views, blueprints, application factory patterns, and template usage.
Check
Realpython
Build a Scalable Flask Web Project From Scratch Quiz – Real Python
Test your knowledge of Flask basics, blueprints, project structure, Jinja templates, static files, and setup steps.
Real Python: Quiz: First Steps With LangChain
Link: https://realpython.com/quizzes/first-steps-langchain/
In this quiz, you can test your knowledge on the fundamentals of LangChain, such as creating reusable instructions with prompt templates, LangChain chains, and LangChain’s debug mode.
[ Improve Your
Link: https://realpython.com/quizzes/first-steps-langchain/
In this quiz, you can test your knowledge on the fundamentals of LangChain, such as creating reusable instructions with prompt templates, LangChain chains, and LangChain’s debug mode.
[ Improve Your
Realpython
First Steps With LangChain Quiz – Real Python
Large language models (LLMs) have taken the world by storm. In this step-by-step video course, you'll learn to use the LangChain library to build LLM-assisted applications.
Real Python: Skip Ahead in Loops With Python's Continue Keyword
Link: https://realpython.com/python-continue/
Python’s continue keyword functions as a statement that controls the flow of a loop. It allows you to skip code in a loop for the current iteration and jump immediately to the next one. It’s used excl
Link: https://realpython.com/python-continue/
Python’s continue keyword functions as a statement that controls the flow of a loop. It allows you to skip code in a loop for the current iteration and jump immediately to the next one. It’s used excl
Realpython
Skip Ahead in Loops With Python's Continue Keyword – Real Python
Learn how Python's continue statement works, when to use it, common mistakes to avoid, and what happens under the hood in CPython byte code.
Armin Ronacher: In Support Of Shitty Types
Link: https://lucumr.pocoo.org/2025/8/4/shitty-types/
You probably know that I love Rust and TypeScript, and I’m a big proponent of
good typing systems. One of the reasons I find them useful is that they enable
autocomplete, which is generally a good fe
Link: https://lucumr.pocoo.org/2025/8/4/shitty-types/
You probably know that I love Rust and TypeScript, and I’m a big proponent of
good typing systems. One of the reasons I find them useful is that they enable
autocomplete, which is generally a good fe
Armin Ronacher's Thoughts and Writings
In Support Of Shitty Types
A curious thing about types and agents
Python Bytes: #443 Patching Multiprocessing
Link: https://pythonbytes.fm/episodes/show/443/patching-multiprocessing
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://github.com/rvben/rumdl?featured_on=pythonbytes">rumdl</a> - A Markdown Linter written in Rust</strong></li>
<li
Link: https://pythonbytes.fm/episodes/show/443/patching-multiprocessing
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><strong><a href="https://github.com/rvben/rumdl?featured_on=pythonbytes">rumdl</a> - A Markdown Linter written in Rust</strong></li>
<li
pythonbytes.fm
Patching Multiprocessing
News and announcements from the Python community for the week of Aug 4th, 2025
Seth Michael Larson: Extracting 20+ NES & Famicom ROMs from Animal Crossing
Link: https://sethmlarson.dev/extracting-nes-and-famicom-roms-from-animal-crossing?utm_campaign=rss
Animal Crossing for the GameCube was a game far ahead of its
time and one of my personal favorites growing up. One of the
most beloved features was the addition of playable NES games
as rare collectib
Link: https://sethmlarson.dev/extracting-nes-and-famicom-roms-from-animal-crossing?utm_campaign=rss
Animal Crossing for the GameCube was a game far ahead of its
time and one of my personal favorites growing up. One of the
most beloved features was the addition of playable NES games
as rare collectib
sethmlarson.dev
Extracting 20+ NES & Famicom ROMs from Animal Crossing
Animal Crossing for the GameCube was a game far ahead of its
time and one of my personal favorites growing up. One of the
most beloved features was the addition of playable NES games
as rare collec...
time and one of my personal favorites growing up. One of the
most beloved features was the addition of playable NES games
as rare collec...
PyCharm: PyCharm 2025.2: AI Toolkit for AI Engineers and More!
Link: https://blog.jetbrains.com/pycharm/2025/08/pycharm-2025-2/
Link: https://blog.jetbrains.com/pycharm/2025/08/pycharm-2025-2/
Adrarsh Divakaran: Vibe Coding with Junie - JetBrains AI Coding Agent
Link: https://blog.adarshd.dev/posts/vibe-coding-with-jetbrains-junie/
Link: https://blog.adarshd.dev/posts/vibe-coding-with-jetbrains-junie/
Blog Adarsh Divakaran
Vibe Coding with Junie - JetBrains AI Coding Agent
I created a Python project recently to test out Junie - the new AI coding agent from JetBrains. This led to the creation of Pyzlides, a Python library that lets us build presentation slides entirely as code. Interestingly, there are zero lines of code written…
Real Python: Quiz: Mastering While Loops
Link: https://realpython.com/quizzes/mastering-while-loops/
In this quiz, you’ll practice indefinite iteration using the Python while loop.
You’ll test your knowledge of constructing basic and complex while loops, interrupting loop execution with break and con
Link: https://realpython.com/quizzes/mastering-while-loops/
In this quiz, you’ll practice indefinite iteration using the Python while loop.
You’ll test your knowledge of constructing basic and complex while loops, interrupting loop execution with break and con
Realpython
Mastering While Loops Quiz – Real Python
Practice indefinite iteration using the Python "while" loop. Test your knowledge of Python loops, keywords, and best practices today.
Real Python: Quiz: Using Dictionaries in Python
Link: https://realpython.com/quizzes/dictionaries-python/
Do you remember how Python dictionaries work? In this quiz, you’ll revisit key concepts, such as accessing values, adding and removing entries, nesting dictionaries, and understanding valid key types.
Link: https://realpython.com/quizzes/dictionaries-python/
Do you remember how Python dictionaries work? In this quiz, you’ll revisit key concepts, such as accessing values, adding and removing entries, nesting dictionaries, and understanding valid key types.
Realpython
Using Dictionaries in Python Quiz – Real Python
Revisit Python's dictionary data type in this quick quiz. How does it work, why is it useful, and how is it different from a list?
Real Python: Exploring Python T-Strings
Link: https://realpython.com/courses/exploring-t-strings/
Python 3.14’s t-strings allow you to intercept and transform input values before assembling them into a final representation. Unlike f-strings, which produce a str object, t-strings resolve to a Templ
Link: https://realpython.com/courses/exploring-t-strings/
Python 3.14’s t-strings allow you to intercept and transform input values before assembling them into a final representation. Unlike f-strings, which produce a str object, t-strings resolve to a Templ
Realpython
Exploring Python T-Strings – Real Python
Python 3.14 introduces t-strings: a safer, more flexible alternative to f-strings. Learn how to process templates securely and customize string workflows.
PyCoder’s Weekly: Issue #693: Nested Functions, Bitwise Operators, Virtual Threads, and More (Aug. 5, 2025)
Link: https://pycoders.com/issues/693
#693 – AUGUST 5, 2025 View in Browser » Nested Functions in Python Functions in Python can be defined within another function, this post shows you how and just why you might do that. TREY HUNNER
Link: https://pycoders.com/issues/693
#693 – AUGUST 5, 2025 View in Browser » Nested Functions in Python Functions in Python can be defined within another function, this post shows you how and just why you might do that. TREY HUNNER
Pycoders
PyCoder’s Weekly | Issue #693
Nested Functions, Bitwise Operators, Virtual Threads, and More
Django Weblog: Django bugfix release issued: 5.2.5
Link: https://www.djangoproject.com/weblog/2025/aug/06/bugfix-releases/
Today we've issued the 5.2.5 bugfix release.
The release package and checksums are available from our downloads page, as well as from the Python Package Index.
The PGP key ID used for this release is
Link: https://www.djangoproject.com/weblog/2025/aug/06/bugfix-releases/
Today we've issued the 5.2.5 bugfix release.
The release package and checksums are available from our downloads page, as well as from the Python Package Index.
The PGP key ID used for this release is
Django Project
Django bugfix release issued: 5.2.5
Posted by Sarah Boyce on Aug. 6, 2025