Real Python: Quiz: Python Class Constructors: Control Your Object Instantiation
In this quiz, you’ll test your understanding of Python Class Constructors.By working through this quiz, you’ll revisit the internal instantiation process, object initialization using .__init__(), and...
View ArticleReal Python: The Real Python Podcast – Episode #225: Python Getting Faster...
What changes are happening under the hood in the latest versions of Python? How are these updates laying the groundwork for a faster Python in the coming years? Christopher Trudeau is back on the show...
View ArticleReal Python: Quiz: Single and Double Underscores in Python Names
In this quiz, you’ll test your understanding of Single and Double Underscores in Python Names.By working through this quiz, you’ll revisit Python naming conventions that rely on using underscores (_),...
View ArticleProgramiz: Python match…case Statement
The match…case statement allows us to execute different actions based on the value of an expression. In this tutorial, you will learn how to use the Python match…case with the help of examples.
View ArticleReal Python: Quiz: The Python Standard REPL: Try Out Code and Ideas Quickly
In this quiz, you’ll test your understanding of The Python Standard REPL: Try Out Code and Ideas Quickly.The Python REPL allows you to run Python code interactively, which is useful for testing new...
View ArticleReal Python: Quiz: How to Reset a pandas DataFrame Index
In this quiz, you’ll test your understanding of how to reset a pandas DataFrame index.By working through the questions, you’ll review your knowledge of indexing and also expand on what you learned in...
View ArticleZato Blog: Salesforce API integrations and connected apps
Salesforce API integrations and connected apps 2024-10-28, by Dariusz Suchojad OverviewThis instalment in a series of articles about API integrations with Salesforce covers connected apps - how to...
View ArticleReal Python: Quiz: Beautiful Soup: Build a Web Scraper With Python
In this quiz, you’ll test your understanding of web scraping with Python, Requests, and Beautiful Soup.By working through this quiz, you’ll revisit how to inspect the HTML structure of your target site...
View ArticleReal Python: Beautiful Soup: Build a Web Scraper With Python
Web scraping is the automated process of extracting data from the internet. The Python libraries Requests and Beautiful Soup are powerful tools for the job. To effectively harvest the vast amount of...
View ArticleTrey Hunner: Adding keyboard shortcuts to the Python REPL
I talked about the new Python 3.13 REPL a few months ago and after 3.13 was released. I think it’s awesome.I’d like to share a secret feature within the Python 3.13 REPL which I’ve been finding useful...
View ArticlePython Bytes: #407 Back to the future, destination 3.14
<strong>Topics covered in this episode:</strong><br> <ul> <li><strong><a...
View ArticleDjango Weblog: 2025 DSF Board Candidates
Thank you to the 21 individuals who have chosen to stand for election. This page contains their candidate statements submitted as part of the 2025 DSF Board Nominations.Our deepest gratitude goes to...
View ArticlePaolo Melchiorre: 2025 Django Software Foundation board nomination
My self-nomination statement for the 2025 Django Software Foundation (DSF) board of directors elections
View ArticleJulien Tayon: Is chatgpt good at generating code for tuning a guitar ?
I was on a french speaking IRC chan bragging a tad about how I was doing a guitar tuner and paying attention to not fall into the pit of confusing precise and exact figures as a random computer...
View ArticleReal Python: Python's Magic Methods in Classes
As a Python developer who wants to harness the power of object-oriented programming, you’ll love to learn how to customize your classes using special methods, also known as magic methods or dunder...
View ArticleZero to Mastery: Python Monthly Newsletter 💻🐍
59th issue of Andrei Neagoie's must-read monthly Python Newsletter: Python History, Python Drama, Python Built-Ins, and much more. Read the full newsletter to get up-to-date with everything you need to...
View ArticlePyCharm: Data Exploration With pandas
Maybe you’ve heard complicated-sounding phrases such as ‘“Students t-test”, “regression models”, “support vector machines”, and so on. You might think there’s so much you need to learn before you can...
View ArticlePyCoder’s Weekly: Issue #653 (Oct. 29, 2024)
#653 – OCTOBER 29, 2024View in Browser »Sudoku in Python Packaging Simon writes about a Soduku solver written by Konstin that uses the Python packaging mechanisms to do Soduku puzzles. The results are...
View ArticleTalk Python to Me: #483: Reflex Framework: Frontend, Backend, Pure Python
Let's say you want to create a web app and you know Python really well. Your first thought might be Flask or Django or even FastAPI? All good choices but there is a lot to get a full web app into...
View ArticleArmin Ronacher: Make It Ephemeral: Software Should Decay and Lose Data
Most software that exists today does not forget. Creating software that remembers is easy, but designing software that deliberately “forgets” is a bit more complex. By “forgetting,” I don't mean losing...
View Article