Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Mike Driscoll: Python 101 - An Intro to Functions

Link: https://www.blog.pythonlibrary.org/2022/06/28/python-101-an-intro-to-functions/

Functions are reusable pieces of code. Anytime you find yourself writing the same code twice, that code should probably go in a function.
For example, Python has many built-in functions, such as dir()
Python Software Foundation: The PSF Board Election is Open!

Link: http://pyfound.blogspot.com/2022/06/the-psf-board-election-is-open.html

It’s time to cast your vote! Voting takes place from Monday, June 20 AoE, through Thursday, June 30, 2022 AoE. Check here to see how much time you have left to vote. If you are a voting member of the
PyCoder’s Weekly: Issue #531 (June 28, 2022)

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

#531 – JUNE 28, 2022 View in Browser » Build a Tic-Tac-Toe Game With Python and Tkinter In this step-by-step project, you’ll learn how to create a tic-tac-toe game using Python and the Tkinter G
Israel Fruchter: Takes from pyconil 2022

Link: http://fruch.github.io/2022/06/28/pyconil-2022

Takes from pyconil 2022
First in person conference I attend since Covid-19, was fun to meet some of the familiar faces
and meet a few new ones.
I’ve tried live tweeting, but seem like I’m not very goo
Python Bytes: #290 Sentient AI? If so, then what?

Link: https://pythonbytes.fm/episodes/show/290/sentient-ai-if-so-then-what

<p><strong>Watch the live stream:</strong></p>

<a href='https://www.youtube.com/watch?v=E-yIQgq08jI' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>

<p><strong>About the show</strong></p>
PyBites: Automating the Boring Stuff and Plotting Student Data

Link: https://pybit.es/articles/automating-the-boring-stuff-and-plotting-student-data/

My name is Russell Helmstedter. I am a middle school math and computer science teacher at De Anza Academy of Technology & the Arts (DATA). My first exposure to Python was in March of 2020. For some re
Python for Beginners: Largest Element in a List in Python

Link: https://www.pythonforbeginners.com/basics/largest-element-in-a-list-in-python

We often use lists to store numbers. In this article, we will discuss different ways to find the largest element in a list in python.
Largest Element in a List Using the sort() Method in Python
If a l
Real Python: Python Stacks, Queues, and Priority Queues in Practice

Link: https://realpython.com/queue-in-python/

Queues are the backbone of numerous algorithms found in games, artificial intelligence, satellite navigation, and task scheduling. They’re among the top abstract data types that computer science stude
Mike Driscoll: Using Python to Serve Files Locally (Video)

Link: https://www.blog.pythonlibrary.org/2022/06/29/using-python-to-serve-files-locally-video/

Did you know you can serve files on your local network using Python? It's easy when you use the built-in HTTP server!
You can even use this technique to transfer files to your phone!
Learn more about
PyBites: Data engineering involves more Python than you might think!

Link: https://pybit.es/articles/pp76-more-python-needed-in-data-engineering/

Listen here:

This week we have Christo back on the show to talk about his experience in the data engineering field.
He shares some valuable tips how to become a more effective data engineer which, su
PyBites: The Importance of Disconnecting as a Developer

Link: https://pybit.es/articles/the-importance-of-disconnecting-as-a-developer/

You don’t need library to download the scent of honeysuckle. You can hear the music of a chattering creek without a secure connection or authentication. We spend so much time connected to and with our
IslandT: Create a sale application project with Python

Link: https://islandtropicaman.com/wp/2022/06/30/create-a-sale-application-project-with-python/

The old project starts again
After a while of stopping this project has started again, I am going to edit a few lines of code in this project and then added in brand new sections in the next post but
PyCharm: PyCharm 2022.2 EAP 4 Is Out!

Link: https://blog.jetbrains.com/pycharm/2022/06/2022-3-eap-4/

The fourth EAP build supports another Python 3.11 PEP, gets Angular standalone components, improves code insight for ParamSpec, fixes long-awaited debugging issues for WSL projects and the WSL interpr
Mike Driscoll: How to Convert CSV to Excel with Python and pandas (Video)

Link: https://www.blog.pythonlibrary.org/2022/06/30/how-to-convert-csv-to-excel-with-python-and-pandas-video/

Learn how to use 3 lines of code to transform a CSV file to Excel using Python and the pandas package!
Also demonstrates how to fix issues when things go wrong!

The post How to Convert CSV to Excel w
ListenData: Pointwise mutual information (PMI) in NLP

Link: https://www.listendata.com/2022/06/pointwise-mutual-information-pmi.html

Natural Language Processing (NLP) has secured so much acceptance recently as there are many live projects running and now it's not just limited to academics only. Use cases of NLP can be seen across i
Python Morsels: How I made a dataclass remover

Link: https://www.pythonmorsels.com/making-a-dataclass-remover/

My journey creating a dataclass converter by using abstract syntax trees, match-case, the dedent utility and more. You may learn something new along the way.


Table of contents

How does this undatac
ItsMyCode: [Solved] TypeError: missing 2 required positional arguments

Link: https://itsmycode.com/python-typeerror-missing-2-required-positional-arguments/

If we have a function that accepts 2 arguments, and while calling the method, if we do not pass those 2 required arguments Python interpreter will throw TypeError: missing 2 required positional argume