Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Podcast.__init__: Leveling Up Natural Language Processing with Transfer Learning

Link: https://www.pythonpodcast.com/paul-azunre-transfer-learning-for-natural-language-processing-episode-315/

Natural language processing is a powerful tool for extracting insights from large volumes of text. With the growth of the internet and social platforms, and the increasing number of people and communi
Python Pool: Find Roots of the Polynomials Using Numpy in Python

Link: https://www.pythonpool.com/numpy-roots/?utm_source=rss&utm_medium=rss&utm_campaign=numpy-roots

We often solve polynomial equations in mathematics to find the roots of the equations. Have you ever wondered how to solve those mathematical equations using programming? Well, without using python, i
Paolo Amoroso: A NASA TV Still Frame Viewer in Python

Link: http://blog.paoloamoroso.com/2021/04/a-nasa-tv-still-frame-viewer-in-python.html

I wrote Spacestills, a Python program for viewing NASA TV still frames.The main window of Spacestills running on Replit.As a hobbyist wishing to improve my Python programming skills, for some time I’v
Python Pool: 2 Causes of TypeError: ‘Tuple’ Object is not Callable in Python

Link: https://www.pythonpool.com/typeerror-tuple-object-is-not-callable-solved/?utm_source=rss&utm_medium=rss&utm_campaign=typeerror-tuple-object-is-not-callable-solved

Introduction
In this article, we are exploring something new. From the title itself, you must be curious to know about the terms such as TypeError, tuple in python. So putting an end to your curiosity
Python Pool: Learn How to Combine Sets in Python

Link: https://www.pythonpool.com/learn-how-to-combine-sets-in-python/?utm_source=rss&utm_medium=rss&utm_campaign=learn-how-to-combine-sets-in-python

In python, a set is an unordered collection of items. The items in a set are unordered and thus cannot be accessed with indexes. Sets come in handy while performing mathematical operations in python.
Stack Abuse: Python's Iteration Tools: filter(), islice(), map() and zip()

Link: https://stackabuse.com/pythons-iteration-tools-filter-islice-map-and-zip/

Introduction
Python has touched the hearts of many software developers around the world, thanks to its utility and simplicity.
Python provides its users with a number of useful functions and data stru
Python for Beginners: Dictionary Comprehension in Python

Link: https://www.pythonforbeginners.com/dictionary/dictionary-comprehension-in-python


There may be situations while working with dictionaries in python that we need to create a new dictionary from another dictionary by including some  items from the dictionary based on a condition or
Real Python: Using the Python or Operator

Link: https://realpython.com/courses/using-python-or-operator/

There are three Boolean operators in Python: and, or, and not. With them, you can test conditions and decide which execution path your programs will take. In this tutorial, you’ll take a deep dive int
death and gravity: SQL query builder in 150 lines of Python

Link: https://death.andgravity.com/query-builder

In this series,
we'll look at an SQL query builder
I wrote for my feed reader library.
Yup, you read that right, the whole thing fits in 150 lines!
Read on for a preview.

While the code is interestin
death and gravity: Why use an SQL query builder in the first place?

Link: https://death.andgravity.com/query-builder-why

Previously
This is the second article in a series about
writing an SQL query builder in 150 lines of Python,
why I did it, how I thought about it, and what I didn't do.
Today, we'll talk about why I n
AI Pool: Introduction of Fast Fourier Transformation (FFT)

Link: https://ai-pool.com/a/s/introduction-of-fast-fourier-transformation--fft

This article comprises of introduction to the Fourier series, Fourier analysis, Fourier transformation, why do we use it, an explanation of the FFT algorithm, and its implementation.
PyCoder’s Weekly: Issue #473 (May 18, 2021)

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

#473 – MAY 18, 2021 View in Browser » How SpaceX Lands Starship (Sort Of) While waiting for SN15 to launch, Thomas Goddard set out to pull together a 2-dimensional simulation of the Starship lan
Python Software Foundation: The 2021 Python Language Summit

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/_-8J6H4Mr-o/the-2021-python-language-summit.html

Every year, a small group of core developers from Python implementations such as CPython, PyPy, Jython, and more come together to share information, discuss problems, and seek consensus in order to he
IslandT: Multiplication table for number with Python

Link: https://kibiwebgeek.com/multiplication-table-for-number-with-python/

Your goal is to return multiplication table for number that is always an integer from 1 to 10.
For example, a multiplication table (string) for number == 5 looks like below:


1 * 5 = 5
2 * 5 = 10
3 *
Montreal Python User Group: Montréal-Python 86 – Jubilant Quadriceps

Link: https://montrealpython.org/en/2021/05/mp-86/

Join us on this lunch-time special edition featuring European guests:

Łukasz Langa, release manager of Python 3.9 and author of Black with a presentation called: From "it runs" to "it flies": Perform
Python Morsels: Turning a for loop into a list comprehension

Link: https://www.pythonmorsels.com/topics/turning-loop-list-comprehension/




Transcript
Let's turn a for loop into a list comprehension.
A for loop that builds up a new list
We have a list of strings that represent Python Morsels screencast names:
screencasts = [
"Data
Python Pool: Everything You Need to Know About Xrange Function in Python

Link: https://www.pythonpool.com/xrange-python/?utm_source=rss&utm_medium=rss&utm_campaign=xrange-python

xrange in python is a function that is used to generate a sequence of numbers from a given range. It is a function available in python 2 which returns an xrange object. The xrange function comes into
Python for Beginners: Ways to create dictionary in Python

Link: https://www.pythonforbeginners.com/dictionary/ways-to-create-dictionary-in-python


In python, a dictionary is a data structure in which we can keep data in the form of key-value pairs.In this article, we will study and implement various methods to create a dictionary in python.
Cre
Real Python: Build a Bulk File Rename Tool With Python and PyQt

Link: https://realpython.com/bulk-file-rename-tool-python/

Say you need to rename multiple files in your personal folder using a specific naming pattern. Doing that manually can be time-consuming and error-prone. So, you’re thinking of automating the file ren
Stack Abuse: How to Install Pip on Windows

Link: https://stackabuse.com/how-to-install-pip-on-windows/

Introduction
Package managers are tools commonly created for programming languages that make the setup and management of third-party packages easier. Pip is the preferred package manager in Python for