Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: What Are Python Raw Strings?

Link: https://realpython.com/python-raw-strings/

If you’ve ever come across a standard string literal prefixed with either the lowercase letter r or the uppercase letter R, then you’ve encountered a Python raw string:


Python





>>> r"This is a r
TechBeamers Python: How Do You Filter a List in Python?

Link: https://www.techbeamers.com/how-do-you-filter-a-list-in-python/

In this tutorial, we’ll explain different methods to filter a list in Python with the help of multiple examples. You’ll learn to use the Python filter() function, list comprehension, and also use Pyth
TechBeamers Python: How Do I Install Pip in Python?

Link: https://www.techbeamers.com/how-to-install-pip-in-python/

In this tutorial, we’ll provide all the necessary steps for you to install Pip in Python on both Windows and Linux platforms. If you’re using a recent version of Python (Python 3.4 and above), pip is
Kay Hayen: Nuitka Package Configuration Part 3

Link: https://nuitka.net/posts/nuitka-package-config-part3.html

This is the third part of a post series under the tag package_config that explains the
Nuitka package configuration in more detail. To recap, Nuitka package
configuration is the way Nuitka learns abou
Wing Tips: AI Assisted Development in Wing Pro

Link: https://wingware.com/blog/ai-dev

This Wing Tip introduces Wing Pro's AI assisted software development
capabilities. Starting with Wing Pro version 10, you can use generative AI to write new
code at the current editor insertion point,
PyBites: Exploring the Role of Static Methods in Python: A Functional Perspective

Link: https://pybit.es/articles/exploring-the-role-of-static-methods-in-python-a-functional-perspective/

Introduction
Python’s versatility in supporting different programming paradigms, including procedural, object-oriented, and functional programming, opens up a rich landscape for software design and de
Glyph Lefkowitz: Unsigned Commits

Link: https://blog.glyph.im/2024/01/unsigned-commits.html

I am going to tell you why I don’t think you should sign your Git commits, even
though doing so with SSH keys is now easier than ever. But first, to
contextualize my objection, I have a brief hypothe
Glyph Lefkowitz: The Macintosh

Link: https://blog.glyph.im/2024/01/the-macintosh.html


Today is the 40th anniversary of the announcement of the Macintosh. Others have
articulated compelling emotional
narratives
that easily eclipse my own similar childhood memories of the Macintosh fami
TechBeamers Python: Top Important Terms in Python Programming With Examples

Link: https://www.techbeamers.com/important-terms-in-python-programming/

In this tutorial, we have captured the important terms used in Python programming. If you are learning Python, it is good to be aware of different programming concepts and slang related to Python. Ple
Bruno Ponne / Coding The Past: Explore art with SQL and pd.read_sql_query

Link: https://www.codingthepast.com/2024/01/25/SQL-with-Python.html


Greetings, humanists, social and data scientists!

Have you ever tried to load a large file in Python or R? Sometimes, when we have file sizes in the order of gigabytes, you may experience problems o
TechBeamers Python: Pandas GroupBy() and Count() Explained With Examples

Link: https://www.techbeamers.com/pandas-groupby-count/

Pandas GroupBy and Count work in combination and are valuable in various data analysis scenarios. The groupby function is used to group a data frame by one or more columns, and the count function is u
Stack Abuse: Guide to Strings in Python

Link: https://stackabuse.com/guide-to-strings-in-python/

Introduction
We've come far in discovering the basics of computer science in the world of Python, and now is the time to start learning about strings. Strings are a fundamental data type that any aspi
Real Python: The Real Python Podcast – Episode #189: Building a Python Debugger & Preparing for NumPy 2.0

Link: https://realpython.com/podcasts/rpp/189/

How does a debugger work? What can you learn about Python by building one from scratch? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and proje
PyCharm: PyCharm 2023.3.3 Is Out!

Link: https://blog.jetbrains.com/pycharm/2024/01/2023-3-3/

This year, we are trying out a new approach with our releases, moving away from a quarterly schedule to more regular monthly feature-rich releases. This change is intended to deliver new features more
Talk Python to Me: #446: Python in Excel

Link: https://talkpython.fm/episodes/show/446/python-in-excel

Why is Python so popular? There is plenty of room for debate on this but one solid reason is it's easy to adopt, easy to use, and caters to people who are not quite developers/data scientists but need
PyBites: Elevate Your Python: Harnessing the Power of Abstract Base Classes (ABCs)

Link: https://pybit.es/articles/elevate-your-python-harnessing-the-power-of-abstract-base-classes-abcs/

Introduction
One cool object-oriented programming (OOP) technique / pattern is enforcing consistent interfaces.
In Python you can use Abstract Base Classes (ABCs) for that.
Using ABCs ensures that a