Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Python Basics Exercises: Dictionaries

Link: https://realpython.com/courses/basics-exercises-dictionaries/

In plain English, a dictionary is a book containing the definitions of words. Each entry in a dictionary has two parts: the word being defined, and its definition.
Python dictionaries, like lists and
PyCoder’s Weekly: Issue #620 (March 12, 2024)

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

#620 – MARCH 12, 2024 View in Browser » Creating Asynchronous Tasks With Celery and Django In this video course, you’ll learn how to integrate Celery and Django using Redis as a message broker.
Python Insider: Python 3.13.0 alpha 5 is now available

Link: https://pythoninsider.blogspot.com/2024/03/python-3130-alpha-5-is-now-available.html

 Python 3.13.0 alpha 5 is now available:
https://www.python.org/downloads/release/python-3130a5/


This is an early developer preview of Python 3.13
Major new features of the 3.13 series, compared to
Real Python: Visualizing Data in Python With Seaborn

Link: https://realpython.com/python-seaborn/

If you have some experience using Python for data analysis, chances are you’ve produced some data plots to explain your analysis to other people. Most likely you’ll have used a library such as Matplot
Talk Python to Me: #453: uv - The Next Evolution in Python Packages?

Link: https://talkpython.fm/episodes/show/453/uv-the-next-evolution-in-python-packages

Have you ever been wait around for pip to do its thing while installing packages or syncing a virtual environment or through some higher level tool such as pip-tools? Then you'll be very excited to he
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 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: Python 3.13 Allows Disabling of the GIL + subinterpreters

Link: https://www.blog.pythonlibrary.org/2024/03/14/python-3-13-allows-disabling-of-the-gil-subinterpreters/

Python 3.13 adds the ability to remove the Global Interpreter Lock (GIL) per PEP 703. Just this past week, a PR was merged in that allows the disabling of the GIL using a command line flag or an envir
Wingware: Wing Python IDE Version 10.0.3 - March 15, 2024

Link: https://wingware.com/news/2024-03-14

Wing 10.0.3 adds more control over AI request context, improves keyboard navigability on
Windows, fixes folding failures seen in Python files, avoids failure to show debug process
output in Debug I/O,
Peter Bengtsson: Leibniz formula for π in Python, JavaScript, and Ruby

Link: http://www.peterbe.com/plog/leibniz-formula-for-pi

Different ways to calculate the value of π using the Leibniz formula
PyCharm: Pytest vs. Unittest: Which Is Better?

Link:

Python, being a versatile and widely used programming language, offers several testing frameworks to facilitate the testing process. Two prominent choices are pytest and unittest, both of which come w