Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
TechBeamers Python: Python Enumerate Function

Link: https://www.techbeamers.com/python-enumerate/

The enumerate function in Python is a useful and powerful tool for iterating through sequences such as lists, tuples, or strings. It provides both the value and the index of each element in the sequen
TechBeamers Python: Python Dictionary to DataFrame

Link: https://www.techbeamers.com/python-dictionary-to-dataframe/

Python’s Pandas library is a powerful tool for data manipulation and analysis. It offers various data structures, and one of the most commonly used is the DataFrame. A data frame is essentially a two-
TechBeamers Python: Loop Through Files in a Directory

Link: https://www.techbeamers.com/python-loop-through-files-in-directory/

In this tutorial, you’ll learn how to loop through files in a directory using Python. This is a common task when working with files. Whether you want to perform operations on each file, read their con
TechBeamers Python: Higher Order Functions in Python

Link: https://www.techbeamers.com/higher-order-functions-in-python/

As Python programmers, we always strive to make our code concise and reusable. We keep looking for best practices that can help us achieve this goal. In today’s tutorial, we are going to discuss one s
Mike Driscoll: PyDev of the Week: Simon Cross

Link: https://www.blog.pythonlibrary.org/2023/10/23/pydev-of-the-week-simon-cross/

This week we welcome Simon Cross (@hodgestar) as our PyDev of the Week! Simon lives in South Africa and helped start PyConZA. You can see all the various open-source tools that Simon works on over on
Real Python: How to Run Your Python Scripts and Code

Link: https://realpython.com/run-python-scripts/

A Python script or program is a file containing executable Python code. Being able to run Python scripts and code is probably the most important skill that you need as a Python developer. By running y
Stack Abuse: How to Delete a File or Folder in Python

Link: https://stackabuse.com/how-to-delete-a-file-or-folder-in-python/

Introduction
In this Byte we'll be exploring how to delete files and folders in Python. It's a common task in many programming and scripting contexts, especially in areas like data cleaning, temporary
Django Weblog: Django 5.0 beta 1 released

Link: https://www.djangoproject.com/weblog/2023/oct/23/django-50-beta-1-released/

Django 5.0 beta 1 is now available. It represents the second stage in the 5.0
release cycle and is an opportunity for you to try out the changes coming in
Django 5.0.
Django 5.0 brings a deluge of exc
TechBeamers Python: Class Definitions in Python

Link: https://www.techbeamers.com/class-definitions-in-python/

In this tutorial, we’ll explore the basics of class definitions in Python. A class is like a template for making specific objects. It outlines the characteristics and actions shared by all objects of
TechBeamers Python: Python String Strip Tutorial

Link: https://www.techbeamers.com/python-string-strip-tutorial/

In Python, the strip() method is used to remove start and finish whitespace characters (spaces, tabs, and newline characters) from a string. This can be incredibly useful when working with user input,
PyCharm: Join the Webinar: Do You Do Enough Testing? pytest to the Rescue!

Link: https://blog.jetbrains.com/pycharm/2023/10/do-you-do-enough-testing-pytest-to-the-rescue/

Join our webinar on November 21 at 4:00 pm UTC to learn how you can use pytest to find bugs, improve code quality, and even have some fun along the way. We’ll be chatting with Brian Okken about all th
TechBeamers Python: Simple Android Data Analytics App in Python

Link: https://www.techbeamers.com/simple-android-data-analytics-app-in-python/

Today, we present you with an inquisitive tutorial on how to create a simple Android data analytics app in Python. The purpose of this Android app is to record and display the time you spend on the sc
PyCoder’s Weekly: Issue #600 (Oct. 24, 2023)

Link: https://pycoders.com/issues/600

#600 – OCTOBER 24, 2023 View in Browser » Building Custom Middleware in FastAPI Middleware in a web stack framework is able to intercept all requests allowing you to write common request process
PyBites: How to Land a Dev Job in 2023: Proven Strategies & Mistakes to Avoid

Link: https://pybit.es/articles/how-to-land-a-dev-job-in-2023-proven-strategies-mistakes-to-avoid/

Welcome back to the Pybites podcast …
On YouTube:


Or listen here:

In this episode, we delve deep into the nuances of developer job hunting in 2023. The job market landscape has evolved, making pers
Python Morsels: What are lambda expressions?

Link: https://www.pythonmorsels.com/lambda-expressions/

What are lambda expressions and how are they used in Python?


Table of contents

Lambda expressions define functions
Lambda expressions can be defined on the same line they're used
The limitations of
Mike Driscoll: The Ruff Formatter – Python’s Fastest Formatter!

Link: https://www.blog.pythonlibrary.org/2023/10/25/the-ruff-formatter-pythons-fastest-formatter/

The Ruff project was released about a year ago and stormed the Python world. Ruff is written in Rust, but lints Python super fast. You can read all about it in An Intro to Ruff.
This week, the Ruff fo
Real Python: Boost Your Coding Productivity With Ptpython

Link: https://realpython.com/ptpython-shell/

Ptpython is a feature-rich and user-friendly Python REPL (Read-Eval-Print Loop) that takes your interactive Python coding experience to a whole new level. Unlike the standard Python REPL, ptpython off