PyCoder’s Weekly: Issue #554 (Dec. 6, 2022)
#554 – DECEMBER 6, 2022View in Browser »Using Python’s pathlib Module In this video course, you’ll learn how to effectively work with file system paths in Python 3 using the pathlib module in the...
View ArticleProgramiz: Python List
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items and other list operations) with the help of examples.
View ArticlePython for Beginners: Reset Index in a Pandas Series in Python
Pandas series objects are used in python for handling sequential data. For handling data in a series, we generally use the indices of the elements. In this article, we will discuss how to rest index in...
View ArticleReal Python: Build Command-Line Interfaces With Python's argparse
Command-line apps may not be common in the general user’s space, but they’re present in development, data science, systems administration, and many other operations. Every command-line app needs a...
View ArticleMike Driscoll: Get Early Access to The Python Quiz Book and Course
The Python Quiz Book and The Python Quiz Course are now available for early access. Both the course and the book will have 100+ quizzes and answers.Here are just some of the things you'll learn...
View ArticlePyCharm: Together, We Supported Python
Our joint campaign with the Python Software Foundation (PSF) raised a total of USD 20,000 that will be donated to the PSF’s general fund!For the fifth year in a row, JetBrains partnered with the PSF on...
View ArticlePyBites: Coding with mindfulness
Listen here:Welcome back to the Pybites podcast. This week we have Andrew McLeod on the show to talk about mindfulness.We talk about:– Mindfulness as it applies to the tech industry and why it’s...
View ArticlePython⇒Speed: It's time to stop using Python 3.7
Upgrading to new software versions is work, and work that doesn’t benefit your software’s users. Users care about features and bug fixes, not how up-to-date you are.So it’s perhaps not surprising how...
View ArticleTalk Python to Me: #393: Space Science with Python
Space science is one of the few sciences that can spark wonder and imagining in almost anyone. It also happens to be the domain of Python with many missions, telescopes, and analysis happening with...
View ArticlePython Software Foundation: Introducing a New Sliding Scale Membership
The Python Software Foundation (PSF) has made a sliding scale option available for Supporting Membership, because we want to make membership more accessible for more people and to increase the size and...
View ArticlePython Engineering at Microsoft: Python in Visual Studio Code – December 2022...
We’re excited to announce that the December 2022 release of the Python and Jupyter extensions for Visual Studio Code are now available!This release includes the following announcements:Auto indentation...
View ArticleListenData: ChatGPT Isn't a Smart Analyst
ChatGPT has been trending on social media platforms. It has crossed one million users in just a week time. Those who haven't heard about ChatGPT, it's a large language model trained by OpenAI. In...
View ArticleKay Hayen: All in with Nuitka
After more than 10 years of working on the Python compiler Nuitka, and at the age of 50, I have finally decided to take the plunge. My projects “Nuitka” and “Nuitka commercial” are now my day job, and...
View ArticleDeclassed Art: Clabate: minimalistic class-based templates for Python
Clabate is a minimalistic template system for Python language. Clabate does not offer yet another mini-language for templates. It is based on class inheritance and PEP 3101 string formatting. The...
View ArticleReal Python: The Real Python Podcast – Episode #136: Package Python Code With...
How do you start packaging your code with pyproject.toml? Would you like to join a conversation that gently walks you through setting up your Python projects to share? This week on the show,...
View ArticlePython for Beginners: Check if a Pandas Series Is Sorted in Python
Pandas series is a great tool for handling sequential data in python. In this article, we will discuss different ways to check if a pandas series is sorted. Table of ContentsCheck if a Pandas Series...
View ArticleJames Bennett: Boring Python: dependency management
This is the first in hopefully a series of posts I intend to write about how to build/manage/deploy/etc. Python applications in as boring a way as possible. So before I go any further, I want to be...
View ArticlePython Circle: Publishing to Kafka — Synchronous vs Asynchronous
By default, the Kafka client uses a blocking call to push the messages to the Kafka broker. We can use the non-blocking call if application requirements permit. Here we will explore how we can use the...
View ArticleThe Python Coding Blog: Using positional-only and keyword-only arguments in...
In previous articles in this series, you read about positional and keyword arguments, making arguments optional by adding a default value, and including any number of positional and keyword arguments...
View ArticleDavid Amos: Stop Using Implicit Inputs And Outputs
Hang out with Python devs long enough, and you&aposll hear all about Tim Peter&aposs Zen Of Python.The Zen, which you can conveniently read by executing import this in a Python REPL, presents...
View Article