Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: Hands-On House Price Prediction - Deep Learning in Python with Keras

Link: https://stackabuse.com/hands-on-house-price-prediction-deep-learning-in-python-with-keras

In this short series of guides, we'll be taking a look at a hands-on house price prediction. We'll be using Keras, the deep learning API built on top of TensorFlow to train a neural network to predict
Stack Abuse: Feature Scaling Data with Scikit-Learn for Machine Learning in Python

Link: https://stackabuse.com/feature-scaling-data-with-scikit-learn-for-machine-learning-in-python

Introduction
Preprocessing data is an often overlooked key step in Machine Learning. In fact - it's as important as the shiny model you want to fit with it.

Garbage in - garbage out.

You can have th
Mike Driscoll: Announcing: Automating Excel with Python Kickstarter

Link: https://www.blog.pythonlibrary.org/2021/07/12/announcing-automating-excel-with-python-kickstarter/


Automating Excel with Python will be Michael Driscoll’s 10th Python book! This book’s primary goal is to help you automate the creation, editing, and reading of Excel spreadsheets using the Python pr
Python Software Foundation: Łukasz Langa is the inaugural CPython Developer-in-Residence!

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/QIjVUbY12IY/ukasz-langa-is-inaugural-cpython.html

The PSF and the Python Steering Council are pleased to announce that the inaugural Developer-in-Residence role will be held by core developer Łukasz Langa. CPython, the reference implementation of Pyt
Real Python: Python News: What's New From June 2021?

Link: https://realpython.com/python-news-june-2021/

If you want to get up to speed on what happened in the world of Python in June 2021, then you’ve come to the right place to get your news!
June was a month of change. Ewa Jodlowska, the Executive Dire
Andre Roberge: Friendlier tracebacks in REPLs (including Jupyter)

Link: https://aroberge.blogspot.com/2021/07/friendlier-tracebacks-in-repls.html

Traceback:  Determination of origin; the process of tracing something back to its source.I have been working towards release 0.4 of friendly/friendly_traceback as well as preparing for a talk at the u
Python Pool: 5 Ways to Find the list max index in Python

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

The post 5 Ways to Find the list max index in Python appeared first on Python Pool.
A list is a data structure in python which is used to store items of multiple data types. Because of that, it is con
Stack Abuse: Python: How to Remove a Character from a String

Link: https://stackabuse.com/python-how-to-remove-a-character-from-a-string

Introduction
In this guide, we'll take a look at how to remove a character from a string in Python.
Strings, and especially user-generated input may contain unwanted characters, such as special charac
Python for Beginners: How to Comment Out a Block of Code in Python

Link: https://www.pythonforbeginners.com/comments/how-to-comment-out-a-block-of-code-in-python


Programming with Python is exciting. Writing code and sharing it with others can lead to amazing things. But before our programs can grow, we need to make sure they are easy to read. That’s why progr
Real Python: The Square Root Function in Python

Link: https://realpython.com/courses/square-root-function-python/

Are you trying to solve a quadratic equation? Maybe you need to calculate the length of one side of a right triangle. You can use the math module’s sqrt() method for determining the square root of a n
death and gravity: Why I wrote my own SQL query builder (in Python)

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

Previously
This is the third article in a series about
writing an SQL query builder in 150 lines of Python.
Today, we'll talk about:

why I decided to write my own
the alternatives I considered
why I
Python Morsels: How to write a generator expression

Link: https://www.pythonmorsels.com/topics/how-write-generator-expression/




Transcript
Let's make a generator expression.
Writing a generator expression
Here we have a list and a list comprehension that loops over that list:
>>> numbers = [2, 1, 3, 4, 7, 11, 18]
>>> square
Mike Driscoll: Learn to Code by Solving Problems eBook Contest

Link: https://www.blog.pythonlibrary.org/2021/07/13/learn-to-code-by-solving-problems-ebook-contest/

No Starch Press has partnered with Mouse vs Python to bring you an eBook contest for Learn to Code by Solving Problems: A Python Programming Primer by Daniel Zingaro.

There will be 5 winners. To ente
PyCharm: Webinar: “Simple, Fast Frontends with htmx” with Carson Gross

Link: http://feedproxy.google.com/~r/Pycharm/~3/YhSMW0UCBEA/

The web has changed in recent years. Modern websites mean lots of JavaScript on the frontend, sometimes supplanting HTML all together. You’re left with a pile of npm dependencies, wondering if it will
PyCoder’s Weekly: Issue #481 (July 13, 2021)

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

#481 – JULY 13, 2021 View in Browser » One Database Transaction Too Many Learn how a bug was born — one that resulted in hundreds of users of an application getting a notification that they had
Podcast.__init__: Exploring The SpeechBrain Toolkit For Speech Processing

Link: https://www.pythonpodcast.com/speechbrain-deep-learning-speech-toolkit-episode-323/

With the rising availability of computation in everyday devices, there has been a corresponding increase in the appetite for voice as the primary interface. To accomodate this desire it is necessary f
Juri Pakaste: Converting between NSBezierPath and CGPath

Link: https://juripakaste.fi/nzbezierpath-cgpath/

The macOS SDK ships with at least two graphics path types: NSBezierPath and CGPath. They are mostly used in different contexts but sometimes it would be useful to convert between them. On iOS UIBezier
Python for Beginners: Python Literals

Link: https://www.pythonforbeginners.com/basics/python-literals


While reading materials for programming in python, you must have encountered certain phrases like keywords, variables, constants and literals. In this article, we will study the underlying concepts