Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: The Real Python Podcast – Episode #138: 2022 Real Python Tutorial & Video Course Wrap Up

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

It's been another year of changes at Real Python! The Real Python team has written, edited, curated, illustrated, and produced a mountain of Python material this year. We added some new members to the
Python for Beginners: Use the Pandas fillna Method to Fill NaN Values

Link: https://www.pythonforbeginners.com/basics/use-the-pandas-fillna-method-to-fill-nan-values

Handling NaN values while analyzing data is an important task. The pandas module in python provides us with the fillna() method to fill NaN values. In this article, we will discuss how to use the pand
CodersLegacy: Setup Virtual Environment for Pyinstaller with Venv

Link: https://coderslegacy.com/pyinstaller-virtual-environment-with-venv/

In this Python tutorial, we will discuss how to optimize your Pyinstaller EXE’s using Virtual Environments. We will be using the “venv” library to create the Virtual environment for Pyinstaller, which
Wyatt Baldwin: PDM vs Poetry

Link: https://wyattbaldwin.com/2022/12/23/pdm-vs-poetry/

A few years back, I started using poetry to manage dependencies for all my projects. I ran into some minor issues early on but haven’t had any problems recently and prefer it to any of the other depen
Programiz: Python Program to Compute the Power of a Number

Link: https://www.programiz.com/python-programming/examples/power

In this example, you will learn to compute the power of a number.
Programiz: Python Program to Count the Number of Digits Present In a Number

Link: https://www.programiz.com/python-programming/examples/number-of-digits

In this example, you will learn to count the number of digits present in a number.
Programiz: Python Program to Check If Two Strings are Anagram

Link: https://www.programiz.com/python-programming/examples/anagram

In this example, you will learn to check if two strings are anagram.
Programiz: Python Program to Compute all the Permutation of the String

Link: https://www.programiz.com/python-programming/examples/permutation-of-string

In this example, you will learn to compute all the permutation of the string.
Programiz: Python Program to Count the Number of Occurrence of a Character in String

Link: https://www.programiz.com/python-programming/examples/number-of-character

In this example, you will learn to count the number of occurrences of a character in a string.
Mike Driscoll: PyDev of the Week: Joe Kaufeld

Link: https://www.blog.pythonlibrary.org/2022/12/26/pydev-of-the-week-joe-kaufeld/

This week we welcome Joe Kaufeld as our PyDev of the Week! Joe has been a convention organizer for more than a decade and cofounded TranscribersOfReddit. Joe is active in the Python community and has
Python for Beginners: Create a Dictionary From a String in Python

Link: https://www.pythonforbeginners.com/basics/create-a-dictionary-from-a-string-in-python

Strings and dictionaries are the two most used data structures in Python. We use strings for text analysis in Python. On the other hand, a dictionary is used to store key-value pairs. In this article,
PyCoder’s Weekly: Issue #557 (Dec. 27, 2022)

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

#557 – DECEMBER 27, 2022 View in Browser » It is that time of year again, everybody is making lists. Hopefully you weren’t on the “naughty” one. 2022 has seen a lot of change in tech, from the rel
The Python Coding Blog: Using type hints when defining a Python function [Intermediate Python Functions Series #6]

Link: https://thepythoncodingbook.com/2022/12/27/type-hints-in-python-functions/

You’ve already covered a lot of ground in this Intermediate Python Functions series. In this article, you’ll read about a relatively new addition in Python called type hinting or type annotation. Unli
Kay Hayen: Nuitka Release 1.3

Link: https://nuitka.net/posts/nuitka-release-13.html

This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release contains a large amount of performance work, that should
spec
"Paolo Amoroso's Journal": Troubleshooting a Suite8080 assembler bug

Link: https://journal.paoloamoroso.com/troubleshooting-a-suite8080-assembler-bug?pk_campaign=rss-feed

The iLoad feature of the Z80-MBC2 homebrew Z80 computer allows uploading binary code that runs on the bare metal.
I thought it would be fun to try iLoad with some Intel 8080 code generated by the asm8
Python for Beginners: Position of a Character in a String in Python

Link: https://www.pythonforbeginners.com/basics/position-of-a-character-in-a-string-in-python

Searching characters in given strings is one of the most common tasks while text analysis in Python. This article discusses how to find the position of a character in a string in python.
Table of Cont