Real Python: The Real Python Podcast – Episode #212: Digging Into Graph...
Have you wondered about graph theory and how to start exploring it in Python? What resources and Python libraries can you use to experiment and learn more? This week on the show, former co-host David...
View ArticlePython Morsels: What are lists in Python?
Lists are used to store and manipulate an ordered collection of things.Table of contentsLists are ordered collectionsContainment checkingLengthModifying the contents of a listIndexing: looking up items...
View ArticleQuansight Labs Blog: Free-threaded CPython is ready to experiment with!
An overview of the ongoing efforts to improve and roll out support for free-threaded CPython throughout the Python open source ecosystem
View ArticleTalk Python to Me: #470: Python in Medicine and Patient Care
Python is special. It's used by the big tech companies but also by those you would rarely classify as developers. On this episode, we get a look inside how Python is being used at a Children's Hospital...
View ArticlePython Software Foundation: Announcing Our New PyPI Support Specialist!
We are thrilled to announce that our first-ever search for a dedicated PyPI Support Specialist has concluded with the hire of Maria Ashna, the newest member of the Python Software Foundation (PSF)...
View ArticlePeter Bengtsson: Converting Celsius to Fahrenheit with Python
Starting at 4°C, add +12 to the Celcius and mirror the number to get the Fahrenheit number.
View ArticlePyPy: Finding Simple Rewrite Rules for the JIT with Z3
In June I was at the PLDI conference in Copenhagen to present a paper I co-authored with Max Bernstein. I also finally met John Regehr, who I'd been talking on social media for ages but had never met....
View ArticleMatt Layman: Trial Banner Inclusion Tag - Building SaaS #195
In this episode, we worked on a trial banner that could persist across all pages on the site. Because the banner needed data that was only available on the index page, we had to refactor the banner...
View ArticleZato Blog: Network packet brokers and automation in Python
Network packet brokers and automation in Python 2024-07-15, by Dariusz Suchojad Packet brokers are crucial for network engineers, providing a clear, detailed view of network traffic, aiding in...
View ArticleReal Python: Quiz: Python Type Checking
In this quiz, you’ll test your understanding of Python Type Checking.By working through this quiz, you’ll revisit type annotations and type hints, adding static types to code, running a static type...
View ArticleKushal Das: Disable this Firefox preference to save privacy
If you are on the latest Firefox 128 (which is there on Fedora 40), you should uncheck the following preference to disable Privacy-Preserving Attribution. Firefox added this experimental feature and...
View ArticleReal Python: Quiz: How to Flatten a List of Lists in Python
In this quiz, you’ll test your understanding of how to flatten a list in Python.You’ll write code and answer questions to revisit the concept of converting a multidimensional list, such as a matrix,...
View ArticleReal Python: Split Your Dataset With scikit-learn's train_test_split()
One of the key aspects of supervised machine learning is model evaluation and validation. When you evaluate the predictive performance of your model, it’s essential that the process be unbiased. Using...
View ArticleMike Driscoll: Creating Images in Your Terminal with Python and Rich Pixels
A newer Python package called Rich Pixels allows you to create images in your terminal and display them. Darren Burns, one of the team members from the Textual project, created this package.Anyway,...
View ArticleKushal Das: Friends, the most important part of any conference
At the beginning one goes to the conferences to listen to the talks and make new contacts. You meet a lot of new faces every time. Over time a few of them will become great friends and then all...
View ArticleReal Python: Quiz: How to Write Beautiful Python Code With PEP 8
In this quiz, you’ll test your understanding of how to write beautiful Python code with PEP 8.By working through this quiz, you’ll revisit the key guidelines laid out in PEP 8 and how to set up your...
View ArticleReal Python: Quiz: How to Use Generators and yield in Python
In this quiz, you’ll test your understanding of Python generators.Generators and the Python yield statement can help you when you’re working with large datasets that might overwhelm your machine’s...
View ArticleReal Python: Exercises Course: Introduction to Web Scraping With Python
Web scraping is the process of collecting and parsing raw data from the Web, and the Python community has come up with some pretty powerful web scraping tools.The Internet hosts the greatest source of...
View ArticlePyCoder’s Weekly: Issue #638 (July 16, 2024)
#638 – JULY 16, 2024View in Browser »Customize VS Code Settings In this course, Philipp helps you customize your Visual Studio Code settings to switch from a basic cluttered look to a clean presentable...
View ArticleAnwesha Das: Looking back to Euro Python 2024
Over the years, when I am low, I always go to the 2014 Euro Python talk "Farewell and Welcome Home: Python in Two Genders" by Naomi. It has become the first step of my coping mechanism and the door...
View Article